documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "BLM", document_type = "Rule" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-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-0003-0025 | BLM | Administrative Final Rules Published Without Comments BLM-2023-0003 | Minerals Management: Adjustment of Cost Recovery Fees | Rule | 2022-09-21T04:00:00Z | 2022 | 9 | 2022-09-21T04:00:00Z | 2023-04-13T14:28:12Z | 2022-20337 | 0 | 0 | 0900006485343dee | ||
| BLM_FRDOC_0001-0147 | BLM | Recently Posted BLM Rules and Notices. BLM_FRDOC_0001 | Paleontological Resources Preservation | Rule | 2022-08-02T04:00:00Z | 2022 | 8 | 2022-08-02T04:00:00Z | 2022-09-02T03:59:59Z | 2022-09-01T01:01:03Z | 2022-16405 | 0 | 0 | 0900006485204930 | |
| 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-0003-0024 | BLM | Administrative Final Rules Published Without Comments BLM-2023-0003 | Civil Monetary Penalty Inflation Adjustment: Onshore Oil and Gas Operations and Coal Trespass | Rule | 2022-03-14T04:00:00Z | 2022 | 3 | 2022-03-14T04:00:00Z | 2023-04-13T14:26:47Z | 2022-05351 | 0 | 0 | 0900006484fc6a0d | ||
| 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;