documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "BLM-2023-0006" 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 11
| 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-0006-89263 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | Management and Protection of the National Petroleum Reserve in Alaska | Rule | 2024-05-07T04:00:00Z | 2024 | 5 | 2024-05-07T04:00:00Z | 2024-05-07T16:14:24Z | 2024-08585 | 0 | 0 | 09000064865488e5 | ||
| BLM-2023-0006-89264 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | NPR-A Final Rule Economic Analysis 5.7.24 | Supporting & Related Material | 2024-05-07T04:00:00Z | 2024 | 5 | 2024-05-07T16:25:41Z | 0 | 0 | 090000648654a93e | ||||
| BLM-2023-0006-89265 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | CX for Final NPR-A Rule SIGNED | Supporting & Related Material | 2024-05-07T04:00:00Z | 2024 | 5 | 2024-05-07T16:26:17Z | 0 | 0 | 090000648654a9cc | ||||
| BLM-2023-0006-89261 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | BLM_NPRARule_Questions from Wainwright meeting 120423 FINAL | Supporting & Related Material | 2023-12-11T05:00:00Z | 2023 | 12 | 2023-12-11T14:49:32Z | 0 | 0 | 0900006486320b73 | ||||
| BLM-2023-0006-83811 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | Public Meeting - Nuiqsut - November 01, 2023 | Supporting & Related Material | 2023-11-29T05:00:00Z | 2023 | 11 | 2023-11-29T20:40:39Z | 0 | 0 | 09000064862c155a | ||||
| BLM-2023-0006-83812 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | Public Meeting - Utqiagvik - November 02, 2023 | Supporting & Related Material | 2023-11-29T05:00:00Z | 2023 | 11 | 2023-11-29T20:40:48Z | 0 | 0 | 09000064862c155b | ||||
| BLM-2023-0006-77782 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | Management and Protection of the National Petroleum Reserve in Alaska | Proposed Rule | 2023-11-17T05:00:00Z | 2023 | 11 | 2023-11-17T05:00:00Z | 2023-11-22T18:34:44Z | 2023-25486 | 0 | 0 | 090000648628c9cb | ||
| BLM-2023-0006-34425 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | Management and Protection of the National Petroleum Reserve in Alaska | Proposed Rule | 2023-10-24T04:00:00Z | 2023 | 10 | 2023-10-24T04:00:00Z | 2023-11-18T04:59:59Z | 2023-11-18T02:00:51Z | 2023-23427 | 0 | 0 | 090000648612bbd6 | |
| BLM-2023-0006-0001 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | Management and Protection of the National Petroleum Reserve: Alaska | Proposed Rule | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T04:00:00Z | 2023-12-08T04:59:59Z | 2024-01-05T02:04:14Z | 2023-18990 | 0 | 0 | 0900006485f5bbf2 | |
| BLM-2023-0006-0002 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | Summary of Proposed Rule - Management and Protection of the NPR-A (RIN 1004-AE95) | Supporting & Related Material | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T13:49:36Z | 0 | 0 | 0900006485eea85f | ||||
| BLM-2023-0006-0003 | BLM | Management and Protection of the National Petroleum Reserve in Alaska BLM-2023-0006 | Economic Analysis | Supporting & Related Material | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T13:50:16Z | 0 | 0 | 0900006485eea87c |
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;