documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NARA-24-0015" 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-0015-0009 | NARA | NARA-2024-044 Records Schedules NARA-24-0015 | Consolidated Reply_No Comments Received_NARA-2024-044 | Other | 2024-08-29T04:00:00Z | 2024 | 8 | 2024-08-29T04:00:00Z | 2024-08-30T00:47:32Z | 0 | 0 | 09000064866b4091 | |||
| NARA-24-0015-0007 | NARA | NARA-2024-044 Records Schedules NARA-24-0015 | Records Schedules | Notice | 2024-07-09T04:00:00Z | 2024 | 7 | 2024-07-09T04:00:00Z | 2024-07-09T12:47:05Z | 2024-15010 | 0 | 0 | 09000064865e0e47 | ||
| NARA-24-0015-0003 | NARA | NARA-2024-044 Records Schedules NARA-24-0015 | DAA-0255-2024-0004 National Aeronautics and Space Administration Agency-wide Aircraft Operations Records | Other | 2024-07-05T04:00:00Z | 2024 | 7 | 2024-07-05T04:00:00Z | 2024-08-27T03:59:59Z | 2024-07-06T00:44:00Z | 0 | 0 | 09000064865dc9f1 | ||
| NARA-24-0015-0002 | NARA | NARA-2024-044 Records Schedules NARA-24-0015 | DAA-0117-2023-0004 American Battle Monuments Commission Agency-wide Cemetery Operations and Support Services Records | Other | 2024-07-05T04:00:00Z | 2024 | 7 | 2024-07-05T04:00:00Z | 2024-08-27T03:59:59Z | 2024-07-11T01:00:52Z | 0 | 0 | 09000064865dc9ec | ||
| NARA-24-0015-0004 | NARA | NARA-2024-044 Records Schedules NARA-24-0015 | DAA-0425-2024-0002 Department of the Treasury Bureau of Fiscal Service Records of Government Securities Regulations Staff | Other | 2024-07-05T04:00:00Z | 2024 | 7 | 2024-07-05T04:00:00Z | 2024-08-27T03:59:59Z | 2024-07-06T00:44:44Z | 0 | 0 | 09000064865dc9f2 | ||
| NARA-24-0015-0006 | NARA | NARA-2024-044 Records Schedules NARA-24-0015 | DAA-AU-2023-0001 Department of the Army Agency-wide Centralized Aviation Flight Records System | Other | 2024-07-05T04:00:00Z | 2024 | 7 | 2024-07-05T04:00:00Z | 2024-08-27T03:59:59Z | 2024-07-06T00:43:46Z | 0 | 0 | 09000064865dc9f6 | ||
| NARA-24-0015-0001 | NARA | NARA-2024-044 Records Schedules NARA-24-0015 | DAA-0059-2020-0010 Department of State Foreign Service Institute Records of the Foreign Service Institute | Other | 2024-07-05T04:00:00Z | 2024 | 7 | 2024-07-05T04:00:00Z | 2024-08-27T03:59:59Z | 2024-07-06T00:44:30Z | 0 | 0 | 09000064865dc9ea | ||
| NARA-24-0015-0005 | NARA | NARA-2024-044 Records Schedules NARA-24-0015 | DAA-0457-2024-0002 National Security Agency Information Assurance Records | Other | 2024-07-05T04:00:00Z | 2024 | 7 | 2024-07-05T04:00:00Z | 2024-08-27T03:59:59Z | 2024-07-06T00:43:32Z | 0 | 0 | 09000064865dc9f3 |
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;