documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "BOEM", document_type = "Rule" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BOEM_FRDOC_0001-0771 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Oil and Gas and Sulfur Operations in the Outer Continental Shelf; CFR Correction | Rule | 2025-12-15T05:00:00Z | 2025 | 12 | 2025-12-15T05:00:00Z | 2025-12-15T17:24:46Z | 2025-22767 | 0 | 0 | 09000064b90d34da | ||
| BOEM-2025-0038-0002 | BOEM | Rescinding 30 CFR 551.14(b)(5) and (6) BOEM-2025-0038 | Rescission of Expired 1-Year Grace Period for Data Extensions; Corrections | Rule | 2025-09-25T04:00:00Z | 2025 | 9 | 2025-09-25T04:00:00Z | 2025-09-25T19:52:27Z | 2025-18561 | 0 | 0 | 09000064b8fdb04c | ||
| BOEM-2025-0038-0001 | BOEM | Rescinding 30 CFR 551.14(b)(5) and (6) BOEM-2025-0038 | Rescission of Expired 1-Year Grace Period for Data Extensions | Rule | 2025-08-12T04:00:00Z | 2025 | 8 | 2025-08-12T04:00:00Z | 2025-08-12T17:05:59Z | 2025-15325 | 0 | 0 | 09000064b8ef8a94 | ||
| BOEM-2025-0036-0001 | BOEM | Rescinding 30 CFR 585.150 BOEM-2025-0036 | Rescission of Renewable Energy Leasing Schedule | Rule | 2025-08-05T04:00:00Z | 2025 | 8 | 2025-08-05T04:00:00Z | 2025-08-21T03:59:59Z | 2025-08-21T09:01:13Z | 2025-14805 | 0 | 0 | 09000064b8ededa2 | |
| BOEM-2025-0024-0001 | BOEM | 30 CFR 556.103 Cross References BOEM-2025-0024 | Rescission of Cross References | Rule | 2025-07-22T04:00:00Z | 2025 | 7 | 2025-07-22T04:00:00Z | 2025-07-22T22:36:01Z | 2025-13780 | 0 | 0 | 09000064b8e94184 | ||
| BOEM-2025-0010-0001 | BOEM | Restoring Names that Honor American Greatness: Gulf of America BOEM-2025-0010 | Restoring Names that Honor American Greatness: Gulf of America | Rule | 2025-06-06T00:00:00Z | 2025 | 6 | 2025-06-06T17:24:38Z | 2025-10068 | 0 | 0 | 09000064b8dddbb6 | |||
| BOEM-2023-0012-0041 | BOEM | Protection of Marine Archaeological Resources BOEM-2023-0012 | Protection of Marine Archaeological Resources | Rule | 2025-04-14T04:00:00Z | 2025 | 4 | 2025-04-14T16:14:04Z | 2025-06291 | 0 | 0 | 0900006486a8e511 | |||
| BOEM-2025-0001-0001 | BOEM | 2025 Civil Penalties Inflation Adjustments for Oil, Gas, and Sulfur Operations in the Outer Continental Shelf BOEM-2025-0001 | Civil Monetary Penalty Inflation Adjustment | Rule | 2025-01-13T05:00:00Z | 2025 | 1 | 2025-01-13T05:00:00Z | 2025-01-14T13:35:08Z | 2025-00257 | 0 | 0 | 09000064868b674f |
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;