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 = "Rule" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-0004-0084 | NPS | National Park Service, New River Gorge National River, Bicycle Routes NPS-2012-0004 | Special Regulations: Areas of the National Park System, New River Gorge National River, Bicycling | Rule | 2013-12-05T05:00:00Z | 2013 | 12 | 2013-12-05T05:00:00Z | 2013-12-05T15:22:35Z | 2013-29087 | 0 | 0 | 09000064814a9e15 | ||
| NPS-2013-0002-0002 | NPS | National Park Service, Curecanti NRA, Snowmobiles and Off-Road Motor Vehicles NPS-2013-0002 | Snowmobiles and Off-Road Motor Vehicles; Special Regulations: Curecanti National Recreation Area, CO | Rule | 2013-12-02T05:00:00Z | 2013 | 12 | 2013-12-02T05:00:00Z | 2013-12-04T14:31:40Z | 2013-28788 | 0 | 0 | 09000064814a20d0 | ||
| NPS-2013-0001-6618 | NPS | National Park Service, Yellowstone National Park, Winter Use NPS-2013-0001 | Special Regulations: Areas of the National Park System; Yellowstone National Park; Winter Use | Rule | 2013-10-23T04:00:00Z | 2013 | 10 | 2013-10-23T04:00:00Z | 2013-10-29T19:20:47Z | 2013-24238 | 0 | 0 | 090000648145ac49 | ||
| NPS-2007-0164-0006 | NPS | Commercial Filming NPS-2007-0164 | Commercial Filming and Similar Projects and Still Photography Activities | Rule | 2013-08-22T04:00:00Z | 2013 | 8 | 2013-08-22T04:00:00Z | 2013-10-04T12:18:43Z | 2013-20441 | 0 | 0 | 09000064813bf199 | ||
| NPS-2010-0004-0006 | NPS | General Regulations, National Park Service, Demonstrations and Sale or Distribution of Printed Matter NPS-2010-0004 | General Regulations: National Park System, Demonstrations, Sale or Distribution of Printed Matter | Rule | 2013-06-24T04:00:00Z | 2013 | 6 | 2013-06-24T04:00:00Z | 2013-06-26T16:53:06Z | 2013-15005 | 0 | 0 | 090000648133b591 | ||
| NPS-2011-0001-0014 | NPS | Special Regulations, National Capital Region, Demonstrations and Special Events NPS-2011-0001 | Demonstrations and Special Events: Areas of National Park System, National Capital Region | Rule | 2013-03-07T05:00:00Z | 2013 | 3 | 2013-03-07T05:00:00Z | 2013-03-18T14:49:17Z | 2013-05249 | 0 | 0 | 090000648121de37 | ||
| NPS-2012-0003-0202 | NPS | Special Regulations of the National Park Service, Chattahoochee National Recreation Area, Bicycle Routes NPS-2012-0003 | Special Regulations: Areas of National Park System, Chattahoochee River National Recreation Area, Bicycle Routes | Rule | 2013-03-06T05:00:00Z | 2013 | 3 | 2013-03-06T05:00:00Z | 2013-03-18T14:48:26Z | 2013-05250 | 0 | 0 | 090000648121c466 | ||
| NPS-2012-0006-0008 | NPS | Special Regulations; Areas of the National Park System, Sleeping Bear Dunes National Lakeshore; Bicycling NPS-2012-0006 | Special Regulations: Areas of National Park System, Sleeping Bear Dunes National Lakeshore, Bicycling | Rule | 2013-02-21T05:00:00Z | 2013 | 2 | 2013-02-21T05:00:00Z | 2013-03-18T14:47:08Z | 2013-04047 | 0 | 0 | 0900006481200c29 |
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;