documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NPS-2018-0001" 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)
document_type 3
agency_id 1
- NPS 6
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NPS-2018-0001-6102 | NPS | Glen Canyon National Recreation Area; Motor Vehicles NPS-2018-0001 | Glen Canyon National Recreation Area; Motor Vehicles | Rule | 2021-02-12T05:00:00Z | 2021 | 2 | 2021-02-12T05:00:00Z | 2021-02-19T12:43:19Z | C1-2020-28464 | 0 | 0 | 0900006484a3485b | ||
| NPS-2018-0001-6103 | NPS | Glen Canyon National Recreation Area; Motor Vehicles NPS-2018-0001 | Glen Canyon National Recreation Area; Motor Vehicles | Rule | 2021-02-12T05:00:00Z | 2021 | 2 | 2021-02-12T05:00:00Z | 2021-02-19T14:43:46Z | C1-2020-28 | 0 | 0 | 0900006484a3472e | ||
| NPS-2018-0001-6101 | NPS | Glen Canyon National Recreation Area; Motor Vehicles NPS-2018-0001 | Cost-Benefit and Regulatory Flexibility Analyses: Special Regulations for Motor Vehicles at Glen Canyon National Recreation Area | Supporting & Related Material | 2021-01-19T05:00:00Z | 2021 | 1 | 2021-01-19T15:26:38Z | 0 | 0 | 09000064849f8490 | ||||
| NPS-2018-0001-6100 | NPS | Glen Canyon National Recreation Area; Motor Vehicles NPS-2018-0001 | Glen Canyon National Recreation Area; Motor Vehicles | Rule | 2021-01-15T05:00:00Z | 2021 | 1 | 2021-01-15T05:00:00Z | 2021-01-19T14:58:25Z | 2020-28464 | 0 | 0 | 09000064849f45f6 | ||
| NPS-2018-0001-6099 | NPS | Glen Canyon National Recreation Area; Motor Vehicles NPS-2018-0001 | GLCA ORV Economic Analysis_final | Supporting & Related Material | 2018-08-01T04:00:00Z | 2018 | 8 | 2018-08-01T19:23:59Z | 0 | 0 | 09000064835b4f51 | ||||
| NPS-2018-0001-0001 | NPS | Glen Canyon National Recreation Area; Motor Vehicles NPS-2018-0001 | Special Regulations of the National Park Service: Glen Canyon National Recreation Area; Motor Vehicles | Proposed Rule | 2018-03-01T05:00:00Z | 2018 | 3 | 2018-03-01T05:00:00Z | 2018-05-01T03:59:59Z | 2018-04-29T15:19:44Z | 2018-04030 | 0 | 0 | 0900006482f7190b |
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;