documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "BLM-2023-0002" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BLM-2023-0002-0020 | BLM | DO NOT POST Supplementary Rules BLM-2023-0002 | Public Lands in the Cotoni-Coast Dairies Unit of the California Coastal National Monument in Santa Cruz County, CA | Proposed Rule | 2022-11-29T05:00:00Z | 2022 | 11 | 2022-11-29T05:00:00Z | 2023-01-31T04:59:59Z | 2023-04-13T14:29:52Z | 2022-25810 | 0 | 0 | 0900006485507bd6 | |
| BLM-2023-0002-0019 | BLM | DO NOT POST Supplementary Rules BLM-2023-0002 | Travel Management on Public Lands: Montrose, Delta, San Miguel, and Ouray Counties, CO | Proposed Rule | 2022-11-28T05:00:00Z | 2022 | 11 | 2022-11-28T05:00:00Z | 2023-01-28T04:59:59Z | 2023-04-13T14:29:15Z | 2022-25460 | 0 | 0 | 0900006485504702 | |
| BLM-2023-0002-0018 | BLM | DO NOT POST Supplementary Rules BLM-2023-0002 | Final Supplementary Rule for Public Lands in the Lower Lake Creek Falls Special Recreation Management Area, Lane County, OR | Rule | 2022-11-18T05:00:00Z | 2022 | 11 | 2022-11-18T05:00:00Z | 2023-04-13T14:28:42Z | 2022-25015 | 0 | 0 | 09000064854d039a | ||
| BLM-2023-0002-0017 | BLM | DO NOT POST Supplementary Rules BLM-2023-0002 | Supplementary Rule for Public Lands Managed by the Missoula Field Office in Missoula, Granite, and Powell Counties, MT | Proposed Rule | 2022-08-04T04:00:00Z | 2022 | 8 | 2022-08-04T04:00:00Z | 2022-10-04T03:59:59Z | 2023-04-13T14:27:39Z | 2022-16295 | 0 | 0 | 090000648520feac | |
| BLM-2023-0002-0016 | BLM | DO NOT POST Supplementary Rules BLM-2023-0002 | Klondike Bluffs Area of Public Lands Managed by the Moab Field Office in Grand County, UT | Rule | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-27T04:00:00Z | 2023-04-13T14:27:17Z | 2022-08859 | 0 | 0 | 0900006485039f0e | ||
| BLM-2023-0002-0015 | BLM | DO NOT POST Supplementary Rules BLM-2023-0002 | Public Lands: Virgin River Canyon Recreation Area in Mohave County, AZ | Rule | 2022-01-06T05:00:00Z | 2022 | 1 | 2022-01-06T05:00:00Z | 2023-04-13T14:26:21Z | 2022-00025 | 0 | 0 | 0900006484f0b4cb |
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;