documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NARA-20-0004" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0004-0009 | NARA | NARA-2020-023 Records schedules NARA-20-0004 | NARA-20-0004 Consolidated Reply for all schedules in this notice (no comments received) | Other | 2020-04-21T04:00:00Z | 2020 | 4 | 2020-04-21T04:00:00Z | 2020-10-07T03:01:04Z | 0 | 0 | 09000064844bd109 | |||
| NARA-20-0004-0004 | NARA | NARA-2020-023 Records schedules NARA-20-0004 | DAA-0237-2019-0010 DOT, Federal Aviation Administration, Suspected Unapproved Parts | Other | Proposed Schedule | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-03-17T03:59:59Z | 2020-10-07T02:59:28Z | 0 | 0 | 09000064843d67b7 | |
| NARA-20-0004-0006 | NARA | NARA-2020-023 Records schedules NARA-20-0004 | DAA-0474-2018-0005 FRTIB, Office of Enterprise Risk Management, Enterprise Risk Management Records | Other | Proposed Schedule | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-04-17T03:59:59Z | 2020-10-07T03:00:11Z | 0 | 0 | 09000064843d67b9 | |
| NARA-20-0004-0005 | NARA | NARA-2020-023 Records schedules NARA-20-0004 | DAA-0474-2018-0001 FRTIB, Office of Communications and Education, Communications and Education Records | Other | Proposed Schedule | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-04-17T03:59:59Z | 2020-10-07T03:00:09Z | 0 | 0 | 09000064843d67b8 | |
| NARA-20-0004-0007 | NARA | NARA-2020-023 Records schedules NARA-20-0004 | DAA-0513-2019-0001 HHS, Indian Health Service, Sanitation Facilities | Other | Proposed Schedule | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-04-17T03:59:59Z | 2020-10-07T03:00:14Z | 0 | 0 | 09000064843d67ba | |
| NARA-20-0004-0008 | NARA | NARA-2020-023 Records schedules NARA-20-0004 | DAA-0568-2019-0006 DHS, Bureau of Customs and Border Protection, Electronic System for Travel Authorization Records | Other | Proposed Schedule | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-04-17T03:59:59Z | 2020-10-07T03:01:02Z | 0 | 0 | 09000064843d67bb | |
| NARA-20-0004-0001 | NARA | NARA-2020-023 Records schedules NARA-20-0004 | Records Schedules | Notice | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-04-17T03:59:59Z | 2020-04-17T01:01:35Z | 2020-04188 | 0 | 0 | 09000064843cf721 | |
| NARA-20-0004-0003 | NARA | NARA-2020-023 Records schedules NARA-20-0004 | DAA-0170-2017-0006 DOJ, Drug Enforcement Administration, Diversion Control Records | Other | Proposed Schedule | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-04-17T03:59:59Z | 2020-10-07T02:59:26Z | 0 | 0 | 09000064843d67b6 | |
| NARA-20-0004-0002 | NARA | NARA-2020-023 Records schedules NARA-20-0004 | DAA-0064-2019-0006 NARA, Agency-wide, Electronic Messaging Records | Other | Proposed Schedule | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-04-17T03:59:59Z | 2020-10-07T03:01:08Z | 0 | 0 | 09000064843d43bd |
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;