documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NARA-19-0012" 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-0012-0009 | NARA | NARA-2019-037 Records Schedules NARA-19-0012 | DAA-0180-2019-0001, CFTC, Derivatives Oversight & Compliance: consolidated reply | Other | Consolidated Reply | 2020-01-16T05:00:00Z | 2020 | 1 | 2020-01-16T05:00:00Z | 2020-10-07T02:49:39Z | 0 | 0 | 09000064842afe21 | ||
| NARA-19-0012-0008 | NARA | NARA-2019-037 Records Schedules NARA-19-0012 | NARA-19-0012 Consolidated Reply for 4 of 5 schedules in this notice (no comments received) | Other | Consolidated Reply | 2019-11-07T05:00:00Z | 2019 | 11 | 2019-11-07T05:00:00Z | 2019-11-08T04:15:58Z | 0 | 0 | 09000064841282d4 | ||
| NARA-19-0012-0003 | NARA | NARA-2019-037 Records Schedules NARA-19-0012 | DAA-0180-2019-0001, CFTC, Agency-wide, Derivatives Oversight and Compliance | Other | Proposed Schedule | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-11-02T03:59:59Z | 2019-10-31T01:01:53Z | 0 | 0 | 0900006483f90be5 | |
| NARA-19-0012-0005 | NARA | NARA-2019-037 Records Schedules NARA-19-0012 | DAA-0560-2019-0007, DHS, Transportation Security Administration, Liaison Operations | Other | Proposed Schedule | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-11-02T03:59:59Z | 2019-09-18T00:57:50Z | 0 | 0 | 0900006483f90be7 | |
| NARA-19-0012-0001 | NARA | NARA-2019-037 Records Schedules NARA-19-0012 | Records Schedules | Notice | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-09-18T03:59:59Z | 2019-09-17T21:58:26Z | 2019-20074 | 0 | 0 | 0900006483f86035 | |
| NARA-19-0012-0004 | NARA | NARA-2019-037 Records Schedules NARA-19-0012 | DAA-0271-2017-0004, DOL, Office of Workers' Compensation Programs, Records of the Division of Coal Mineworkers' Compensation | Other | Proposed Schedule | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-11-02T03:59:59Z | 2019-09-18T00:58:02Z | 0 | 0 | 0900006483f90be6 | |
| NARA-19-0012-0006 | NARA | NARA-2019-037 Records Schedules NARA-19-0012 | DAA-AFU-2019-0014, AFU, Agency-wide, Deployment Records | Other | Proposed Schedule | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-11-02T03:59:59Z | 2019-09-18T02:27:11Z | 0 | 0 | 0900006483f90be8 | |
| NARA-19-0012-0002 | NARA | NARA-2019-037 Records Schedules NARA-19-0012 | DAA-0180-2018-0005, CFTC, Agency-wide, Administrative Records | Other | Proposed Schedule | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-11-02T03:59:59Z | 2019-09-18T00:57:15Z | 0 | 0 | 0900006483f90be4 |
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;