documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "BLM-2023-0005" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- BLM 7
| 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-0005-130199 | BLM | Fluid Mineral Leases and Leasing Process BLM-2023-0005 | Final Leasing Rule NEPA CX_Signed | Supporting & Related Material | 2024-04-23T04:00:00Z | 2024 | 4 | 2024-04-23T14:47:54Z | 0 | 0 | 09000064864dda2d | ||||
| BLM-2023-0005-130197 | BLM | Fluid Mineral Leases and Leasing Process BLM-2023-0005 | Fluid Mineral Leases and Leasing Process | Rule | 2024-04-23T04:00:00Z | 2024 | 4 | 2024-04-23T04:00:00Z | 2024-04-23T14:47:11Z | 2024-08138 | 0 | 0 | 09000064864e6f4e | ||
| BLM-2023-0005-130198 | BLM | Fluid Mineral Leases and Leasing Process BLM-2023-0005 | Fluid Minerals Leasing Final Regulatory Impact Analysis 1004-AE80 4.9.24 | Supporting & Related Material | 2024-04-23T04:00:00Z | 2024 | 4 | 2024-04-23T14:47:50Z | 0 | 0 | 09000064864dda2c | ||||
| BLM-2023-0005-0004 | BLM | Fluid Mineral Leases and Leasing Process BLM-2023-0005 | Proposed Rule Fluid Mineral Leases Categorical Exclusion 6.26.23 | Supporting & Related Material | 2023-07-24T04:00:00Z | 2023 | 7 | 2023-07-24T12:23:57Z | 0 | 0 | 0900006485cea042 | ||||
| BLM-2023-0005-0001 | BLM | Fluid Mineral Leases and Leasing Process BLM-2023-0005 | Fluid Mineral Leases and Leasing Process | Proposed Rule | 2023-07-24T04:00:00Z | 2023 | 7 | 2023-07-24T04:00:00Z | 2023-09-23T03:59:59Z | 2023-10-12T01:00:57Z | 2023-14287 | 0 | 0 | 0900006485d215af | |
| BLM-2023-0005-0003 | BLM | Fluid Mineral Leases and Leasing Process BLM-2023-0005 | Proposed Rule Fluid Mineral Leases Supplemental Economic Analysis 6.26.23 | Supporting & Related Material | 2023-07-24T04:00:00Z | 2023 | 7 | 2023-07-24T12:23:52Z | 0 | 0 | 0900006485cea040 | ||||
| BLM-2023-0005-0002 | BLM | Fluid Mineral Leases and Leasing Process BLM-2023-0005 | Proposed Rule Fluid Mineral Leases Economic Analysis 6.26.23 | Supporting & Related Material | 2023-07-24T04:00:00Z | 2023 | 7 | 2023-07-24T12:23:46Z | 0 | 0 | 0900006485ce94db |
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;