documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NARA-24-0007" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NARA-24-0007-0009 | NARA | NARA-2024-025 records schedules NARA-24-0007 | Consolidated Reply_no comments received_NARA-2024-025 | Other | 2024-05-23T04:00:00Z | 2024 | 5 | 2024-05-23T04:00:00Z | 2024-05-24T00:55:54Z | 0 | 0 | 090000648657ccf9 | |||
| NARA-24-0007-0008 | NARA | NARA-2024-025 records schedules NARA-24-0007 | Records Schedules | Notice | 2024-04-02T04:00:00Z | 2024 | 4 | 2024-04-02T04:00:00Z | 2024-04-02T13:23:37Z | 2024-06924 | 0 | 0 | 09000064864b56ff | ||
| NARA-24-0007-0001 | NARA | NARA-2024-025 records schedules NARA-24-0007 | DAA-0058-2024-0003 Department of the Treasury Internal Revenue Service eAuth | Other | 2024-03-29T04:00:00Z | 2024 | 3 | 2024-03-29T04:00:00Z | 2024-05-21T03:59:59Z | 2024-03-30T01:32:06Z | 0 | 0 | 09000064864a2da1 | ||
| NARA-24-0007-0007 | NARA | NARA-2024-025 records schedules NARA-24-0007 | DAA-0117-2023-0007 American Battle Monuments Commission Agency wide Mission and Organization | Other | 2024-03-29T04:00:00Z | 2024 | 3 | 2024-03-29T04:00:00Z | 2024-05-21T03:59:59Z | 2024-03-30T01:30:58Z | 0 | 0 | 09000064864a2dba | ||
| NARA-24-0007-0002 | NARA | NARA-2024-025 records schedules NARA-24-0007 | DAA-0611-2023-0020 HHS Administration for Strategic Preparedness and Response International Operations Records | Other | 2024-03-29T04:00:00Z | 2024 | 3 | 2024-03-29T04:00:00Z | 2024-05-21T03:59:59Z | 2024-03-30T01:31:55Z | 0 | 0 | 09000064864a2da2 | ||
| NARA-24-0007-0005 | NARA | NARA-2024-025 records schedules NARA-24-0007 | DAA-0434-2020-0014 Department of Energy Agency wide Employee Training Records | Other | 2024-03-29T04:00:00Z | 2024 | 3 | 2024-03-29T04:00:00Z | 2024-05-21T03:59:59Z | 2024-03-30T01:31:21Z | 0 | 0 | 09000064864a2db5 | ||
| NARA-24-0007-0004 | NARA | NARA-2024-025 records schedules NARA-24-0007 | DAA-0611-2023-0016 HHS Administration for Strategic Preparedness and Response Continuity of Operation Records | Other | 2024-03-29T04:00:00Z | 2024 | 3 | 2024-03-29T04:00:00Z | 2024-05-21T03:59:59Z | 2024-03-30T01:31:32Z | 0 | 0 | 09000064864a2db4 | ||
| NARA-24-0007-0006 | NARA | NARA-2024-025 records schedules NARA-24-0007 | DAA-0263-2022-0007 Central Intelligence Agency Agency wide Non-Employee Payment Records | Other | 2024-03-29T04:00:00Z | 2024 | 3 | 2024-03-29T04:00:00Z | 2024-05-21T03:59:59Z | 2024-03-30T01:31:10Z | 0 | 0 | 09000064864a2db9 | ||
| NARA-24-0007-0003 | NARA | NARA-2024-025 records schedules NARA-24-0007 | DAA-0611-2023-0019 HHS Administration for Strategic Preparedness and Response Recovery Coordination Training Records | Other | 2024-03-29T04:00:00Z | 2024 | 3 | 2024-03-29T04:00:00Z | 2024-05-21T03:59:59Z | 2024-03-30T01:31:43Z | 0 | 0 | 09000064864a2da5 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;