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 = "Rule" and posted_year = 2023 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-2020-0003-0071 | NPS | Commercial Visitor Services; Concession Contracts NPS-2020-0003 | Commercial Visitor Services: Concession Contracts | Rule | 2023-12-29T05:00:00Z | 2023 | 12 | 2023-12-29T05:00:00Z | 2023-12-29T15:25:55Z | 2023-28659 | 0 | 0 | 0900006486365aa4 | ||
| NPS-2022-0004-0189 | 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 Processes: Disposition or Repatriation of Native American Human Remains, Funerary Objects, Sacred Objects, and Objects of Cultural Patrimony | Rule | 2023-12-13T05:00:00Z | 2023 | 12 | 2023-12-13T18:21:58Z | 2023-27040 | 0 | 0 | 09000064863313c1 | |||
| NPS-2022-0001-0410 | NPS | Ozark National Scenic Riverways; Motorized Vessels NPS-2022-0001 | Ozark National Scenic Riverways; Motorized Vessels | Rule | 2023-12-12T05:00:00Z | 2023 | 12 | 2023-12-12T05:00:00Z | 2023-12-12T17:33:59Z | 2023-27168 | 0 | 0 | 0900006486328246 | ||
| NPS-2023-0002-0001 | NPS | National Capital Region; Change of Address NPS-2023-0002 | National Capital Region; Change of Address | Rule | 2023-05-18T04:00:00Z | 2023 | 5 | 2023-05-18T04:00:00Z | 2023-05-19T13:25:16Z | 2023-10377 | 0 | 0 | 0900006485a1c5af | ||
| NPS-2022-0002-0029 | NPS | Mount Rainier National Park; Fishing NPS-2022-0002 | Mount Rainier National Park; Fishing | Rule | 2023-01-20T05:00:00Z | 2023 | 1 | 2023-01-20T05:00:00Z | 2023-01-20T16:14:29Z | 2022-27483 | 0 | 0 | 09000064855fb265 |
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;