documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "NPS", document_type = "Proposed Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2014-0007-0001 | NPS | Special Regulations: Areas of the National Park System; Bryce Canyon National Park; Bicycling NPS-2014-0007 | Special Regulations: Areas of the National Park System, Bryce Canyon National Park, Bicycling | Proposed Rule | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T05:00:00Z | 2015-01-27T04:59:59Z | 2015-01-27T03:04:41Z | 2014-27911 | 0 | 0 | 09000064819444ca | |
| NPS-2014-0006-0001 | NPS | Curation of Federally-Owned and Administered Archeological Collections NPS-2014-0006 | Curation of Federally-Owned and Administered Archeological Collections | Proposed Rule | 2014-11-18T05:00:00Z | 2014 | 11 | 2014-11-18T05:00:00Z | 2015-02-18T04:59:59Z | 2015-03-25T02:01:51Z | 2014-26839 | 0 | 0 | 0900006481935664 | |
| NPS-2014-0005-0001 | NPS | National Park Service, Cuyahoga Valley NP, Bicycling NPS-2014-0005 | Special Regulations: Areas of the National Park System, Cuyahoga Valley National Park, Bicycling | Proposed Rule | 2014-10-14T04:00:00Z | 2014 | 10 | 2014-10-14T04:00:00Z | 2014-12-16T04:59:59Z | 2014-12-17T03:01:45Z | 2014-24324 | 0 | 0 | 09000064818bcae9 | |
| NPS-2014-0004-0001 | NPS | National Park Service, Alaska Region, Hunting and Trapping in National Preserves NPS-2014-0004 | Alaska; Hunting and Trapping in National Preserves | Proposed Rule | 2014-09-04T04:00:00Z | 2014 | 9 | 2015-01-15T05:00:00Z | 2015-02-16T04:59:59Z | 2015-04-07T02:03:47Z | 2014-20881 | 0 | 0 | 090000648185c048 | |
| NPS-2014-0003-0001 | NPS | Concessions Contracts NPS-2014-0003 | Concession Contracts | Proposed Rule | 2014-08-05T04:00:00Z | 2014 | 8 | 2014-08-05T04:00:00Z | 2014-09-05T03:59:59Z | 2014-09-06T01:06:17Z | 2014-18416 | 0 | 0 | 0900006481802b08 | |
| NPS-2014-0002-0001 | NPS | National Park Service, Pets and Service Animals NPS-2014-0002 | Special Regulations; Pets and Service Animals: Olympic National Park and Isle Royale National Park | Proposed Rule | 2014-04-18T04:00:00Z | 2014 | 4 | 2014-04-18T04:00:00Z | 2014-06-18T03:59:59Z | 2014-07-18T14:38:10Z | 2014-08563 | 0 | 0 | 09000064816bb5e6 | |
| NPS-2014-0001-0001 | NPS | National Park Service, Wrangell-St. Elias National Park and Preserve, Off-Road Vehicles NPS-2014-0001 | Special Regulations: Wrangell-St. Elias National Park and Preserve; Off-Road Vehicles | Proposed Rule | 2014-01-15T05:00:00Z | 2014 | 1 | 2014-01-15T05:00:00Z | 2014-03-18T03:59:59Z | 2014-03-20T01:02:34Z | 2014-00491 | 0 | 0 | 09000064815099d7 |
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;