documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "NPS", document_type = "Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date (date), comment_start_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-2012-0005-0035 | NPS | National Park Service, Yellowstone National Park, Winter Use NPS-2012-0005 | Special Regulations: Areas of National Park System, Yellowstone National Park | Rule | 2012-12-12T05:00:00Z | 2012 | 12 | 2012-12-12T05:00:00Z | 2013-02-11T16:15:53Z | 2012-29911 | 0 | 0 | 0900006481188713 | ||
| NPS-2012-0001-0150 | NPS | Saguaro National Park Bicycle Route NPS-2012-0001 | Special Regulations: Areas of the National Park System, Saguaro National Park, Bicycling | Rule | 2012-10-02T04:00:00Z | 2012 | 10 | 2012-10-02T04:00:00Z | 2012-10-11T17:47:36Z | 2012-24231 | 0 | 0 | 0900006481130e80 | ||
| NPS-2011-0004-0022 | NPS | Special Regulations, National Park Service, Mammoth Cave National Park NPS-2011-0004 | Special Regulations, Areas of the National Park System: Mammoth Cave National Park, Bicycle Routes | Rule | 2012-09-12T04:00:00Z | 2012 | 9 | 2012-09-12T04:00:00Z | 2012-10-11T17:50:16Z | 2012-22438 | 0 | 0 | 09000064811132d6 | ||
| NPS-2008-0006-6545 | NPS | Vehicles and Traffic Safety 36 CFR 4.30 NPS-2008-0006 | Vehicles and Traffic Safety; Bicycles | Rule | 2012-07-06T04:00:00Z | 2012 | 7 | 2012-07-06T04:00:00Z | 2012-07-10T14:45:06Z | 2012-16466 | 0 | 0 | 090000648107d3d8 | ||
| NPS-2011-0002-0012 | NPS | Special Regulation, Cape Cod National Seashore, Spring Turkey Season NPS-2011-0002 | Special Regulations; Areas of National Park System: Cape Cod National Seashore | Rule | 2012-02-21T05:00:00Z | 2012 | 2 | 2012-02-21T05:00:00Z | 2012-02-28T13:06:37Z | 2012-03950 | 0 | 0 | 0900006480fbbc94 | ||
| NPS-2011-0005-21165 | NPS | Special Regulations, National Park Service, Cape Hatteras National Seashore, Off-Road Vehicle Management NPS-2011-0005 | Special Regulations, Areas of National Park System: Cape Hatteras National Seashore, Off-Road Vehicle Management | Rule | 2012-01-23T05:00:00Z | 2012 | 1 | 2012-01-23T05:00:00Z | 2012-02-01T13:38:56Z | 2012-01250 | 0 | 0 | 0900006480fa1216 |
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;