documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "NPS", document_type = "Proposed Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2023-0003-0001 | NPS | Cape Hatteras National Seashore; Bicycling NPS-2023-0003 | Cape Hatteras National Seashore; Bicycling | Proposed Rule | 2023-10-19T04:00:00Z | 2023 | 10 | 2023-10-19T04:00:00Z | 2023-12-19T04:59:59Z | 2023-12-19T02:04:05Z | 2023-23077 | 0 | 0 | 090000648610c0a1 | |
| NPS-2024-0007-0001 | NPS | World Heritage Convention NPS-2024-0007 | Semiannual Regulatory Agenda | Proposed Rule | 2023-07-27T04:00:00Z | 2023 | 7 | 2023-07-27T04:00:00Z | 2024-12-06T14:36:01Z | 2023-14546 | 0 | 0 | 0900006485d5d3db | ||
| NPS-2023-0001-13092 | NPS | Alaska; Hunting and Trapping in National Preserves NPS-2023-0001 | Alaska; Hunting and Trapping in National Preserves—Extension of Public Comment Period | Proposed Rule | 2023-03-10T05:00:00Z | 2023 | 3 | 2023-03-15T13:29:40Z | 2023-04981 | 0 | 0 | 090000648578c53a | |||
| NPS-2022-0004-0091 | NPS | Native American Graves Protection and Repatriation Act Systematic Process for Disposition and Repatriation of Native American Human Remains, Funerary Objects, Sacred Objects, and Objects of Cultural Patrimony NPS-2022-0004 | Native American Graves Protection and Repatriation Act: Systematic Process for Disposition and Repatriation of Native American Human Remains, Funerary Objects, Sacred Objects, and Objects of Cultural Patrimony | Proposed Rule | 2023-01-10T05:00:00Z | 2023 | 1 | 2023-01-10T17:36:44Z | 2023-00360 | 0 | 0 | 09000064855d0c2e | |||
| NPS-2023-0001-0001 | NPS | Alaska; Hunting and Trapping in National Preserves NPS-2023-0001 | Hunting and Trapping in National Preserves: Alaska | Proposed Rule | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T05:00:00Z | 2023-03-28T03:59:59Z | 2023-04-07T01:00:34Z | 2023-00142 | 0 | 0 | 09000064855c2542 |
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;