documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NARA-20-0016" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_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-20-0016-0019 | NARA | NARA-2020-054 Records schedules NARA-20-0016 | DAA-0370-2020-0001 Schedule Consolidated Reply | Other | Consolidated Reply | 2021-06-03T04:00:00Z | 2021 | 6 | 2021-06-03T04:00:00Z | 2021-06-04T00:38:35Z | 0 | 0 | 0900006484b5372c | ||
| NARA-20-0016-0018 | NARA | NARA-2020-054 Records schedules NARA-20-0016 | NARA-2020-054 Consolidated Reply for 3 of 4 schedules in this notice (no comments received) | Other | Consolidated Reply | 2020-09-10T04:00:00Z | 2020 | 9 | 2020-09-10T04:00:00Z | 2020-10-07T03:17:49Z | 0 | 0 | 0900006484851162 | ||
| NARA-20-0016-0005 | NARA | NARA-2020-054 Records schedules NARA-20-0016 | DAA-0370-2020-0001 DOC, NOAA, Electronic Monitoring Data | Other | Proposed Schedule | 2020-07-21T04:00:00Z | 2020 | 7 | 2020-07-21T04:00:00Z | 2020-09-05T03:59:59Z | 2020-10-07T03:18:35Z | 0 | 0 | 0900006484790bab | |
| NARA-20-0016-0001 | NARA | NARA-2020-054 Records schedules NARA-20-0016 | Records Schedules | Notice | Request for Comments | 2020-07-21T04:00:00Z | 2020 | 7 | 2020-07-21T04:00:00Z | 2020-07-22T03:59:59Z | 2020-07-21T22:33:57Z | 2020-15693 | 0 | 0 | 090000648478b8fb |
| NARA-20-0016-0003 | NARA | NARA-2020-054 Records schedules NARA-20-0016 | DAA-0059-2019-0018 Dept of State, Office of Global Criminal Justice, Consolidated Schedule | Other | Proposed Schedule | 2020-07-21T04:00:00Z | 2020 | 7 | 2020-07-21T04:00:00Z | 2020-09-05T03:59:59Z | 2020-10-07T03:21:44Z | 0 | 0 | 0900006484790ba9 | |
| NARA-20-0016-0004 | NARA | NARA-2020-054 Records schedules NARA-20-0016 | DAA-0263-2020-0001 CIA, Agency-wide, Individual Training Records | Other | Proposed Schedule | 2020-07-21T04:00:00Z | 2020 | 7 | 2020-07-21T04:00:00Z | 2020-09-05T03:59:59Z | 2020-10-07T03:22:36Z | 0 | 0 | 0900006484790baa | |
| NARA-20-0016-0002 | NARA | NARA-2020-054 Records schedules NARA-20-0016 | DAA-0059-2019-0008 Dept of State, Bureau of Arms Control, Verification and Compliance, Consolidated Schedule | Other | Proposed Schedule | 2020-07-21T04:00:00Z | 2020 | 7 | 2020-07-21T04:00:00Z | 2020-09-05T03:59:59Z | 2020-10-07T03:21:35Z | 0 | 0 | 0900006484790ba8 |
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;