documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "NPS", document_type = "Proposed Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NPS-2018-0008-0001 | NPS | Special Regulations, Areas of the National Park System, Death Valley National Park, Designation of Airstrip NPS-2018-0008 | Special Regulations, Areas of the National Park System: Death Valley National Park; Designation of Airstrip | Proposed Rule | 2018-09-20T04:00:00Z | 2018 | 9 | 2018-09-20T04:00:00Z | 2018-11-20T04:59:59Z | 2018-11-21T02:01:23Z | 2018-20332 | 0 | 0 | 0900006483735b62 | |
| NPS-2018-0005-159600 | NPS | Alaska; Hunting and Trapping in National Preserves NPS-2018-0005 | Alaska; Hunting and Trapping in National Preserves; Second Extension of Public Comment Period | Proposed Rule | 2018-09-06T04:00:00Z | 2018 | 9 | 2018-09-06T15:36:30Z | 2018-19293 | 0 | 0 | 09000064836af5f1 | |||
| NPS-2018-0007-0001 | NPS | Special Regulations, Areas of the National Park System, National Capital Region, Special Events and Demonstrations NPS-2018-0007 | Special Regulations, Areas of the National Park System, National Capital Region, Special Events and Demonstrations | Proposed Rule | 2018-08-15T04:00:00Z | 2018 | 8 | 2018-08-15T04:00:00Z | 2018-10-16T03:59:59Z | 2018-10-31T01:05:17Z | 2018-17386 | 0 | 0 | 0900006483622c70 | |
| NPS-2018-0005-73712 | NPS | Alaska; Hunting and Trapping in National Preserves NPS-2018-0005 | Alaska; Hunting and Trapping in National Preserves; First Extension of Public Comment Period | Proposed Rule | 2018-07-19T04:00:00Z | 2018 | 7 | 2020-06-01T18:08:21Z | 2018-15420 | 0 | 0 | 090000648351f944 | |||
| NPS-2018-0005-0001 | NPS | Alaska; Hunting and Trapping in National Preserves NPS-2018-0005 | Alaska; Hunting and Trapping in National Preserve | Proposed Rule | 2018-05-22T04:00:00Z | 2018 | 5 | 2018-05-22T04:00:00Z | 2018-11-06T04:59:59Z | 2020-06-01T18:06:15Z | 2018-10735 | 0 | 0 | 09000064832ad88e | |
| NPS-2018-0004-0001 | NPS | Special Regulations: Areas of the National Park System, Pea Ridge National Military Park; Bicycles NPS-2018-0004 | Special Regulations: Areas of the National Park System, Pea Ridge National Military Park; Bicycles | Proposed Rule | 2018-03-16T04:00:00Z | 2018 | 3 | 2018-03-16T04:00:00Z | 2018-05-16T03:59:59Z | 2018-04-29T15:34:01Z | 2018-05414 | 0 | 0 | 090000648301beac | |
| NPS-2018-0003-0001 | NPS | Transporting Bows and Crossbows Across National Park System Units NPS-2018-0003 | Transporting Bows and Crossbows Across National Park System Units | Proposed Rule | 2018-03-02T05:00:00Z | 2018 | 3 | 2018-03-02T05:00:00Z | 2018-05-02T03:59:59Z | 2018-04-23T01:01:15Z | 2018-04247 | 0 | 0 | 0900006482f85816 | |
| 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;