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 = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2018-0004-0007 | 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 | Rule | 2018-09-25T04:00:00Z | 2018 | 9 | 2018-09-25T04:00:00Z | 2018-10-10T13:16:06Z | 2018-20693 | 0 | 0 | 090000648376c4c6 | ||
| NPS-2018-0003-0043 | NPS | Transporting Bows and Crossbows Across National Park System Units NPS-2018-0003 | Transporting Bows and Crossbows Across National Park System Units | Rule | 2018-09-18T04:00:00Z | 2018 | 9 | 2018-09-18T04:00:00Z | 2018-09-18T13:42:52Z | 2018-20093 | 0 | 0 | 090000648370f639 | ||
| NPS-2018-0006-0001 | NPS | Technical and Clarifying Edits; Criminal Violations NPS Units Nationwide NPS-2018-0006 | Technical and Clarifying Edits; Criminal Violations NPS Units Nationwide | Rule | 2018-06-08T04:00:00Z | 2018 | 6 | 2018-06-08T04:00:00Z | 2018-06-08T13:33:36Z | 2018-12324 | 0 | 0 | 0900006483398c59 | ||
| NPS-2015-0007-0037 | NPS | National Park Service; Rocky Mountain National Park; Bicycles NPS-2015-0007 | Special Regulations, Areas of National Park System, Rocky Mountain National Park; Bicycling | Rule | 2018-03-02T05:00:00Z | 2018 | 3 | 2018-03-02T05:00:00Z | 2018-03-05T16:14:17Z | 2018-04309 | 0 | 0 | 0900006482f85781 | ||
| NPS-2018-0002-0001 | NPS | Rights of Way; Removal of Outdated Reference NPS-2018-0002 | Rights of Way; Removal of Outdated Reference | Rule | 2018-01-16T05:00:00Z | 2018 | 1 | 2018-01-16T05:00:00Z | 2018-03-01T14:47:37Z | 2018-00516 | 0 | 0 | 0900006482e0be0a | ||
| NPS-2016-0005-0028 | NPS | General Regulations, Areas of the National Park System, Free Distribution of Other Message Bearing Items NPS-2016-0005 | General Regulations; Areas of the National Park System, Free Distribution of Other Message-Bearing Items | Rule | 2018-01-16T05:00:00Z | 2018 | 1 | 2018-01-16T05:00:00Z | 2018-03-01T14:56:04Z | 2018-00515 | 0 | 0 | 0900006482e0bdb3 |
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;