documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "BLM" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2025-0012-0001 | BLM | Rescission of Regulations Regarding Mineral Locations Within National Forest Wilderness BLM-2025-0012 | Rescission of Regulations Regarding Mineral Locations Within National Forest Wilderness | Other | 2025-07-17T04:00:00Z | 2025 | 7 | 2025-07-17T04:00:00Z | 2025-08-19T03:59:59Z | 2025-07-21T18:49:20Z | 0 | 0 | 09000064b8e7e0ad | ||
| BLM-2025-0013-0002 | BLM | Rescission of Regulations Regarding Mining Claim Payments BLM-2025-0013 | Rescission of Regulations Regarding Mining Claim Payments | Other | 2025-07-17T04:00:00Z | 2025 | 7 | 2025-07-17T04:00:00Z | 2025-08-19T03:59:59Z | 2025-07-23T17:01:49Z | 0 | 0 | 09000064b8e7e0d3 | ||
| BLM-2008-0007-0569 | BLM | Land Withdrawals; Removal of Regulations Covering Emergency Withdrawals BLM-2008-0007 | Letter from The Wilderness Society | Other | 2008-10-27T04:00:00Z | 2008 | 10 | 2008-10-27T04:00:00Z | 2008-10-27T18:54:24Z | 0 | 0 | 0900006480775c49 | |||
| BLM-2008-0007-0573 | BLM | Land Withdrawals; Removal of Regulations Covering Emergency Withdrawals BLM-2008-0007 | Letter from Director Caswell to Sierra Club, Grand Canyon Chapter | Other | 2008-10-27T04:00:00Z | 2008 | 10 | 2008-10-27T04:00:00Z | 2008-10-27T19:01:51Z | 0 | 0 | 09000064807770c7 | |||
| BLM-2008-0007-0531 | BLM | Land Withdrawals; Removal of Regulations Covering Emergency Withdrawals BLM-2008-0007 | Letter from Director Caswell to The Wilderness Society | Other | 2008-10-27T04:00:00Z | 2008 | 10 | 2008-10-27T04:00:00Z | 2008-10-27T17:55:00Z | 0 | 0 | 0900006480775c5a | |||
| BLM-2008-0007-0532 | BLM | Land Withdrawals; Removal of Regulations Covering Emergency Withdrawals BLM-2008-0007 | Letter from Sierra Club's Grand Canyon Chapter | Other | 2008-10-27T04:00:00Z | 2008 | 10 | 2008-10-27T04:00:00Z | 2008-10-27T18:20:22Z | 0 | 0 | 0900006480775c19 |
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;