documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NARA-20-0019" 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-0019-0007 | NARA | NARA-2020-059 Records schedules NARA-20-0019 | NARA-2020-059 Consolidated Reply (No Comments Received) | Other | Consolidated Reply | 2020-11-02T05:00:00Z | 2020 | 11 | 2020-11-02T05:00:00Z | 2020-11-03T02:14:06Z | 0 | 0 | 0900006484947482 | ||
| NARA-20-0019-0005 | NARA | NARA-2020-059 Records schedules NARA-20-0019 | DAA-0201-2020-0008 DOE, Western Area Power Admin, Power Ops Program Records | Other | Proposed Schedule | 2020-09-08T04:00:00Z | 2020 | 9 | 2020-09-08T04:00:00Z | 2020-10-24T03:59:59Z | 2020-10-07T03:34:49Z | 0 | 0 | 090000648484af0d | |
| NARA-20-0019-0002 | NARA | NARA-2020-059 Records schedules NARA-20-0019 | DAA-0180-2018-0006 Commodity Futures Trading Comm, Agency-wide, Regulatory Guidance, Support, Legal Review, Oversight and Compliance | Other | Proposed Schedule | 2020-09-08T04:00:00Z | 2020 | 9 | 2020-09-08T04:00:00Z | 2020-10-24T03:59:59Z | 2020-10-07T03:34:09Z | 0 | 0 | 090000648484af0a | |
| NARA-20-0019-0003 | NARA | NARA-2020-059 Records schedules NARA-20-0019 | DAA-0201-2020-0006 DOE, Western Area Power Admin, Management, Policy and Public Affairs | Other | Proposed Schedule | 2020-09-08T04:00:00Z | 2020 | 9 | 2020-09-08T04:00:00Z | 2020-10-24T03:59:59Z | 2020-10-07T03:34:11Z | 0 | 0 | 090000648484af0b | |
| NARA-20-0019-0006 | NARA | NARA-2020-059 Records schedules NARA-20-0019 | DAA-0269-2020-0006 GSA, Agency-wide, Program Management Records (269.11) | Other | Proposed Schedule | 2020-09-08T04:00:00Z | 2020 | 9 | 2020-09-08T04:00:00Z | 2020-10-24T03:59:59Z | 2020-10-07T03:34:12Z | 0 | 0 | 090000648484af0e | |
| NARA-20-0019-0004 | NARA | NARA-2020-059 Records schedules NARA-20-0019 | DAA-0201-2020-0007 DOE, Western Area Power Admin, Maintenance Program Records | Other | Proposed Schedule | 2020-09-08T04:00:00Z | 2020 | 9 | 2020-09-08T04:00:00Z | 2020-10-24T03:59:59Z | 2020-10-07T03:35:08Z | 0 | 0 | 090000648484af0c | |
| NARA-20-0019-0001 | NARA | NARA-2020-059 Records schedules NARA-20-0019 | Records Schedules | Notice | Request for Comments | 2020-09-08T04:00:00Z | 2020 | 9 | 2020-09-08T04:00:00Z | 2020-09-09T03:59:59Z | 2020-09-08T17:16:25Z | 2020-19748 | 0 | 0 | 0900006484849478 |
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;