documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NARA_FRDOC_0001" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_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_FRDOC_0001-0619 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | National Industrial Security Program | Proposed Rule | 2017-01-11T05:00:00Z | 2017 | 1 | 2017-01-11T05:00:00Z | 2017-02-11T04:59:59Z | 2017-02-11T21:35:13Z | 2017-00152 | 0 | 0 | 090000648245b073 | |
| NARA_FRDOC_0001-0613 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | Office of Government Information Services | Proposed Rule | 2016-12-28T05:00:00Z | 2016 | 12 | 2016-12-28T05:00:00Z | 2017-02-28T04:59:59Z | 2017-02-28T02:02:48Z | 2016-31010 | 0 | 0 | 0900006482439e8c | |
| NARA_FRDOC_0001-0614 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | Presidential Records | Proposed Rule | 2016-12-28T05:00:00Z | 2016 | 12 | 2016-12-28T05:00:00Z | 2017-01-28T04:59:59Z | 2017-01-28T14:00:46Z | 2016-31011 | 0 | 0 | 090000648243a093 | |
| NARA_FRDOC_0001-0466 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | NARA Records Subject to Freedom of Information Act | Proposed Rule | 2014-06-19T04:00:00Z | 2014 | 6 | 2014-06-19T04:00:00Z | 2014-07-22T03:59:59Z | 2014-06-19T13:09:14Z | 2014-14114 | 0 | 0 | 09000064817531ac | |
| NARA_FRDOC_0001-0266 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | Changes to NARA Facilities' Hours of Operation | Proposed Rule | 2010-09-08T04:00:00Z | 2010 | 9 | 2010-09-08T04:00:00Z | 2010-11-09T04:59:59Z | 2013-07-17T14:44:37Z | 2010-22336 | 0 | 0 | 0900006480b47c98 | |
| NARA_FRDOC_0001-0090 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | Semi-annual agenda | Proposed Rule | 2007-04-30T04:00:00Z | 2007 | 4 | 2007-04-30T04:00:00Z | 2013-07-17T14:44:26Z | 07-01262 | 0 | 0 | 0900006480231b99 | ||
| NARA_FRDOC_0001-0067 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | Semi-annual agenda | Proposed Rule | 2006-12-11T05:00:00Z | 2006 | 12 | 2006-12-11T05:00:00Z | 2013-07-17T14:44:25Z | 06-07695 | 0 | 0 | 09000064801eab41 |
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;