documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NARA-24-0003" 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-0003-0008 | NARA | NARA-2024-016 record schedules NARA-24-0003 | Consolidated Reply_no comments received_NARA-2024-016 | Other | 2024-04-11T04:00:00Z | 2024 | 4 | 2024-04-11T04:00:00Z | 2024-04-12T00:42:26Z | 0 | 0 | 09000064864d1378 | |||
| NARA-24-0003-0007 | NARA | NARA-2024-016 record schedules NARA-24-0003 | Records Schedules | Notice | 2024-02-22T05:00:00Z | 2024 | 2 | 2024-02-22T05:00:00Z | 2024-04-09T03:59:59Z | 2024-02-22T14:00:03Z | 2024-03561 | 0 | 0 | 090000648642506e | |
| NARA-24-0003-0005 | NARA | NARA-2024-016 record schedules NARA-24-0003 | DAA-0468-2023-0001 Department of Health and Human Services Office of the Secretary Official Enforcement Case Files of the Office for Civil Rights | Other | 2024-02-16T05:00:00Z | 2024 | 2 | 2024-02-16T05:00:00Z | 2024-04-09T03:59:59Z | 2024-02-17T02:52:54Z | 0 | 0 | 090000648640b392 | ||
| NARA-24-0003-0003 | NARA | NARA-2024-016 record schedules NARA-24-0003 | DAA-0408-2021-0001 Department of Transportation Federal Transit Administration Transit Integrated Appian Development platform | Other | 2024-02-16T05:00:00Z | 2024 | 2 | 2024-02-16T05:00:00Z | 2024-04-09T03:59:59Z | 2024-02-17T02:53:05Z | 0 | 0 | 090000648640b38f | ||
| NARA-24-0003-0002 | NARA | NARA-2024-016 record schedules NARA-24-0003 | DAA-0117-2023-0001 American Battle Monuments Commission Agency-wide Cemetery Maintenance and Facilities | Other | 2024-02-16T05:00:00Z | 2024 | 2 | 2024-02-16T05:00:00Z | 2024-04-09T03:59:59Z | 2024-02-17T02:52:06Z | 0 | 0 | 090000648640b371 | ||
| NARA-24-0003-0006 | NARA | NARA-2024-016 record schedules NARA-24-0003 | DAA-0490-2023-0002 Peace Corps Agency-wide Authorization to Use Personal Materials Agreement | Other | 2024-02-16T05:00:00Z | 2024 | 2 | 2024-02-16T05:00:00Z | 2024-04-09T03:59:59Z | 2024-02-17T02:52:30Z | 0 | 0 | 090000648640b394 | ||
| NARA-24-0003-0004 | NARA | NARA-2024-016 record schedules NARA-24-0003 | DAA-0434-2021-0001 Department of Energy Agency-wide Financial Management and Reporting Records | Other | 2024-02-16T05:00:00Z | 2024 | 2 | 2024-02-16T05:00:00Z | 2024-04-09T03:59:59Z | 2024-02-17T02:52:41Z | 0 | 0 | 090000648640b391 | ||
| NARA-24-0003-0001 | NARA | NARA-2024-016 record schedules NARA-24-0003 | DAA-0065-2022-0001 Department of Justice Federal Bureau of Investigation Career Board Records | Other | 2024-02-16T05:00:00Z | 2024 | 2 | 2024-02-16T05:00:00Z | 2024-04-09T03:59:59Z | 2024-02-17T02:52:18Z | 0 | 0 | 090000648640b370 |
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;