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 = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, last_modified, 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-2008-0006-0103 | NPS | Vehicles and Traffic Safety 36 CFR 4.30 NPS-2008-0006 | Vehicles and Traffic Safety - CORRECTION | Proposed Rule | 2008-12-23T05:00:00Z | 2008 | 12 | 2008-12-23T05:00:00Z | 2011-06-11T17:51:31Z | E8-30649 | 0 | 0 | 09000064807eda07 | ||
| NPS-2008-0006-0001 | NPS | Vehicles and Traffic Safety 36 CFR 4.30 NPS-2008-0006 | Vehicles and Traffic Safety | Proposed Rule | 2008-12-18T05:00:00Z | 2008 | 12 | 2008-12-18T05:00:00Z | 2009-02-18T04:59:59Z | 2011-06-11T17:51:31Z | E8-29892 | 0 | 0 | 09000064807e0687 | |
| NPS-2008-0005-0001 | NPS | National Park Service Special Regulations, Winter Use NPS-2008-0005 | Special Regulations; Areas of the National Park System | Proposed Rule | 2008-11-05T05:00:00Z | 2008 | 11 | 2008-11-05T05:00:00Z | 2008-11-21T04:59:59Z | 2011-06-11T17:51:31Z | E8-26447 | 0 | 0 | 0900006480795486 | |
| NPS-2008-0004-0007 | NPS | National Capital Region - Inaugural Parade NPS-2008-0004 | Mailed Public Submission 1 | Proposed Rule | 2008-08-20T04:00:00Z | 2008 | 8 | 2008-08-20T04:00:00Z | 2011-06-11T17:51:29Z | 0 | 0 | 09000064806d0690 | |||
| NPS-2008-0004-0001 | NPS | National Capital Region - Inaugural Parade NPS-2008-0004 | Special Regulation: Areas of the National Park System, National Capital Region | Proposed Rule | 2008-08-08T04:00:00Z | 2008 | 8 | 2008-08-08T04:00:00Z | 2008-09-23T03:59:59Z | 2011-06-11T17:51:29Z | E8-18412 | 0 | 0 | 09000064806b75cd | |
| NPS-2008-0003-0002 | NPS | See Fish & Wildlife Docket FWS-R9-NSR-2008-0062 General Regulation for Areas Administrated by the National Park Service and the Fish and Wildlife Service NPS-2008-0003 | General Regulations for Areas Administered by the National Park Service and the Fish and Wildlife Service | Proposed Rule | 2008-07-09T04:00:00Z | 2008 | 7 | 2008-07-09T04:00:00Z | 2008-07-10T03:59:59Z | 2011-06-11T17:51:28Z | E8-15614 | 0 | 0 | 090000648066022a | |
| NPS-2008-0003-0001 | NPS | See Fish & Wildlife Docket FWS-R9-NSR-2008-0062 General Regulation for Areas Administrated by the National Park Service and the Fish and Wildlife Service NPS-2008-0003 | General Regulations for Areas Administered by the National Park Service and the Fish and Wildlife Service | Proposed Rule | 2008-04-30T04:00:00Z | 2008 | 4 | 2008-04-30T04:00:00Z | 2011-06-11T17:51:28Z | E8-09606 | 0 | 0 | 090000648053d422 | ||
| NPS-2008-0002-0001 | NPS | Denali NP Special Regulation NPS-2008-0002 | National Park System Units in Alaska | Proposed Rule | 2008-04-28T04:00:00Z | 2008 | 4 | 2008-04-28T04:00:00Z | 2008-06-28T03:59:59Z | 2011-06-11T17:51:27Z | E8-09184 | 0 | 0 | 0900006480537f31 |
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;