documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "BLM_FRDOC_0001" and posted_year = 2024 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BLM_FRDOC_0001-0194 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Rights-of-Way, Leasing, and Operations for Renewable Energy; Technical Corrections | Rule | 2024-12-26T05:00:00Z | 2024 | 12 | 2024-12-26T05:00:00Z | 2024-12-26T13:42:10Z | 2024-30400 | 0 | 0 | 090000648688c653 | ||
| BLM_FRDOC_0001-0193 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Public Lands Administered by the Tres Rios Field Office in Archuleta, La Plata, Montezuma, Dolores, San Miguel, and Montrose Counties, and by the Gunnison Field Office in Gunnison, Ouray, San Juan, and Hinsdale Counties, CO | Rule | 2024-12-19T05:00:00Z | 2024 | 12 | 2024-12-19T05:00:00Z | 2024-12-19T13:18:06Z | 2024-30059 | 0 | 0 | 090000648687e3c9 | ||
| BLM_FRDOC_0001-0192 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Public Lands: Colorado River Valley, Grand Junction and Kremmling Field Offices, and the Dominguez-Escalante National Conservation Area, CO | Rule | 2024-12-19T05:00:00Z | 2024 | 12 | 2024-12-19T05:00:00Z | 2024-12-19T13:17:06Z | 2024-30218 | 0 | 0 | 090000648687e2a4 | ||
| BLM_FRDOC_0001-0190 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Canyons of the Ancients National Monument in Dolores and Montezuma Counties, CO | Rule | 2024-11-14T05:00:00Z | 2024 | 11 | 2024-11-14T05:00:00Z | 2024-11-14T13:01:03Z | 2024-26396 | 0 | 0 | 090000648681489e | ||
| BLM_FRDOC_0001-0189 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Travel Management on Public Lands: Montrose, Delta, San Miguel, and Ouray Counties, CO | Rule | 2024-09-09T04:00:00Z | 2024 | 9 | 2024-09-09T04:00:00Z | 2024-09-09T12:36:15Z | 2024-20154 | 0 | 0 | 09000064866cf6dd | ||
| BLM_FRDOC_0001-0188 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Temporary Closure and Restriction Orders | Rule | 2024-08-07T04:00:00Z | 2024 | 8 | 2024-08-07T04:00:00Z | 2024-08-08T14:45:03Z | 2024-17065 | 0 | 0 | 0900006486621d2d | ||
| BLM_FRDOC_0001-0185 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Update of the Communications Uses Program, Cost Recovery Fee Schedules, and Federal Land Policy and Management Act for Rights-of-Way; Correction | Rule | 2024-05-13T04:00:00Z | 2024 | 5 | 2024-05-13T04:00:00Z | 2024-05-13T12:35:41Z | 2024-10398 | 0 | 0 | 090000648655c7be | ||
| BLM_FRDOC_0001-0179 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Update of the Communications Uses Program, Cost Recovery Fee Schedules, and Section 512 of FLPMA for Rights-of-Way | Rule | 2024-04-12T04:00:00Z | 2024 | 4 | 2024-04-12T04:00:00Z | 2024-05-13T16:24:26Z | 2024-06997 | 0 | 0 | 09000064864d2499 |
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;