documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "BOEM", document_type = "Rule" and posted_year = 2024 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-2023-0012-0036 | BOEM | Protection of Marine Archaeological Resources BOEM-2023-0012 | Protection of Marine Archaeological Resources | Rule | 2024-09-03T04:00:00Z | 2024 | 9 | 2024-09-03T04:00:00Z | 2024-10-04T03:59:59Z | 2025-02-23T05:53:37Z | 2024-19188 | 0 | 0 | 09000064866bd561 | |
| BOEM-2024-0037-0001 | BOEM | 2024 Adjustment of Service Fees for Outer Continental Shelf Activities BOEM-2024-0037 | Adjustment of Service Fees for Outer Continental Shelf Activities | Rule | 2024-08-30T04:00:00Z | 2024 | 8 | 2024-08-30T04:00:00Z | 2024-08-30T14:10:14Z | 2024-18798 | 0 | 0 | 09000064866b583c | ||
| BOEM-2023-0027-2188 | BOEM | Risk Management and Financial Assurance for OCS Lease and Grant Obligations BOEM-2023-0027 | Risk Management and Financial Assurance for OCS Lease and Grant Obligations; Correction | Rule | 2024-05-31T04:00:00Z | 2024 | 5 | 2024-05-31T04:00:00Z | 2024-05-31T13:34:14Z | 2024-11914 | 0 | 0 | 090000648658e3a2 | ||
| BOEM-2023-0005-0251 | BOEM | Renewable Energy Modernization Rule BOEM-2023-0005 | Renewable Energy Modernization Rule | Rule | 2024-05-15T04:00:00Z | 2024 | 5 | 2024-05-15T04:00:00Z | 2024-05-15T13:15:00Z | 2024-08791 | 0 | 0 | 0900006486566a92 | ||
| BOEM-2023-0027-2170 | BOEM | Risk Management and Financial Assurance for OCS Lease and Grant Obligations BOEM-2023-0027 | Risk Management and Financial Assurance for Outer Continental Shelf Lease and Grant Obligations | Rule | 2024-04-24T04:00:00Z | 2024 | 4 | 2024-04-24T04:00:00Z | 2024-05-25T03:59:59Z | 2024-04-24T13:24:55Z | 2024-08309 | 0 | 0 | 09000064864eb91c | |
| BOEM-2024-0002-0001 | BOEM | 2024 Civil Penalties Inflation Adjustments for Oil, Gas, and Sulfur Operations in the Outer Continental Shelf BOEM-2024-0002 | Civil Monetary Penalty Inflation Adjustment | Rule | 2024-01-25T05:00:00Z | 2024 | 1 | 2024-01-25T05:00:00Z | 2024-01-25T16:10:05Z | 2024-01412 | 0 | 0 | 09000064863c2372 |
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;