documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NARA-19-0017" 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-19-0017-0012 | NARA | NARA-2020-011 Records schedules NARA-19-0017 | DAA-0514-2018-0001 (corrected) HHS, Office of the Assistant Secretary for Health, Commissioned Corps Officers' Records: consolidated reply CORRECTED | Other | Consolidated Reply | 2020-08-10T04:00:00Z | 2020 | 8 | 2020-08-10T04:00:00Z | 2020-10-07T02:52:59Z | 0 | 0 | 09000064847ed74d | ||
| NARA-19-0017-0010 | NARA | NARA-2020-011 Records schedules NARA-19-0017 | DAA-0572-2019-0001 USDA, Rural Development, Audits & Investigations: Consolidated Reply | Other | Consolidated Reply | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-10-07T02:52:25Z | 0 | 0 | 09000064843d67bc | ||
| NARA-19-0017-0009 | NARA | NARA-2020-011 Records schedules NARA-19-0017 | NARA-19-0017 Consolidated Reply for 3 of 5 schedules in this notice (no comments received) | Other | Consolidated Reply | 2020-02-06T05:00:00Z | 2020 | 2 | 2020-02-06T05:00:00Z | 2020-10-07T02:53:18Z | 0 | 0 | 0900006484334d5c | ||
| NARA-19-0017-0006 | NARA | NARA-2020-011 Records schedules NARA-19-0017 | DAA-0572-2019-0001 Dept of Agriculture, Rural Development Agency, Audits and Investigations | Other | Proposed Schedule | 2019-12-09T05:00:00Z | 2019 | 12 | 2019-12-09T05:00:00Z | 2020-01-24T04:59:59Z | 2019-12-20T02:03:12Z | 0 | 0 | 09000064841f7a24 | |
| NARA-19-0017-0005 | NARA | NARA-2020-011 Records schedules NARA-19-0017 | DAA-0560-2019-0001 DHS, Transportation Security Administration, Program Management Files | Other | Proposed Schedule | 2019-12-09T05:00:00Z | 2019 | 12 | 2019-12-09T05:00:00Z | 2020-01-24T04:59:59Z | 2019-12-10T04:48:55Z | 0 | 0 | 09000064841f7a23 | |
| NARA-19-0017-0002 | NARA | NARA-2020-011 Records schedules NARA-19-0017 | DAA-0060-2018-0005 DOJ, Office of Policy and Legislation, Policy and Legislation Records | Other | Proposed Schedule | 2019-12-09T05:00:00Z | 2019 | 12 | 2019-12-09T05:00:00Z | 2020-01-24T04:59:59Z | 2019-12-10T04:50:18Z | 0 | 0 | 09000064841f7a20 | |
| NARA-19-0017-0004 | NARA | NARA-2020-011 Records schedules NARA-19-0017 | DAA-0514-2018-0001 HHS, Office of the Assistant Secretary for Health, Commissioned Corps Officers Records | Other | Proposed Schedule | 2019-12-09T05:00:00Z | 2019 | 12 | 2019-12-09T05:00:00Z | 2020-01-24T04:59:59Z | 2020-01-24T02:03:03Z | 0 | 0 | 09000064841f7a22 | |
| NARA-19-0017-0001 | NARA | NARA-2020-011 Records schedules NARA-19-0017 | NARA-2020-011 Records schedules open for comment | Notice | 2019-12-09T05:00:00Z | 2019 | 12 | 2019-12-09T05:00:00Z | 2019-12-10T04:59:59Z | 2019-12-09T17:19:55Z | 2019-26410 | 0 | 0 | 09000064841f61b6 | |
| NARA-19-0017-0003 | NARA | NARA-2020-011 Records schedules NARA-19-0017 | DAA-0443-2019-0005 HHS, National Institutes of Health, Management Support Records | Other | Proposed Schedule | 2019-12-09T05:00:00Z | 2019 | 12 | 2019-12-09T05:00:00Z | 2020-01-24T04:59:59Z | 2019-12-10T04:49:55Z | 0 | 0 | 09000064841f7a21 |
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;