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 = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0891 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | DAA-0095-2021-0005 USDA Forest Service Wildland Fire Incident Management | Other | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-11-02T03:59:59Z | 2021-10-25T01:00:35Z | 0 | 0 | 0900006484d8f1a1 | ||
| NARA_FRDOC_0001-0894 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | DAA-0398-2019-0008 DOT Office of the Secretary Records related to Disadvantaged Business Enterprise | Other | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-11-02T03:59:59Z | 2021-09-17T21:47:14Z | 0 | 0 | 0900006484d8f1a6 | ||
| NARA_FRDOC_0001-0896 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | DAA-0408-2020-0001 DOT Federal Transit Admin Drug and Alcohol Mgmt Information System | Other | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-11-02T03:59:59Z | 2021-09-17T21:47:57Z | 0 | 0 | 0900006484d8f1ba | ||
| NARA_FRDOC_0001-0895 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | DAA-0446-2021-0009 DoD DCSA Defense Information System for Security (DISS) | Other | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-11-02T03:59:59Z | 2021-09-17T21:47:41Z | 0 | 0 | 0900006484d8f1bb | ||
| NARA_FRDOC_0001-0892 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | DAA-0138-2019-0005 DOE FERC Hydropower Projects | Other | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-11-02T03:59:59Z | 2021-09-17T21:46:33Z | 0 | 0 | 0900006484d8f1a2 | ||
| NARA_FRDOC_0001-0893 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | DAA-0201-2020-0011 DOE Western Area Power Administration Environmental Program | Other | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-11-02T03:59:59Z | 2021-09-17T21:47:00Z | 0 | 0 | 0900006484d8f1a3 | ||
| NARA_FRDOC_0001-0889 | NARA | Recently Posted NARA Rules and Notices. NARA_FRDOC_0001 | DAA-0058-2021-0005 Treasury IRS Estate and Gift Tax Returns | Other | 2021-09-17T04:00:00Z | 2021 | 9 | 2021-09-17T04:00:00Z | 2021-11-02T03:59:59Z | 2021-09-17T21:44:53Z | 0 | 0 | 0900006484d8f19d |
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;