documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "BOEM_FRDOC_0001" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-0672 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Oil and Gas Lease Sale: Outer Continental Shelf | Notice | 2023-10-06T04:00:00Z | 2023 | 10 | 2023-10-06T04:00:00Z | 2023-10-06T12:21:45Z | 2023-22317 | 0 | 0 | 0900006486056d90 | ||
| BOEM_FRDOC_0001-0668 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Environmental Impact Statements; Availability, etc.: 2024–2029 National Outer Continental Shelf Oil and Gas Leasing Proposed Final Program | Notice | 2023-10-02T04:00:00Z | 2023 | 10 | 2023-10-02T04:00:00Z | 2023-10-02T12:55:21Z | 2023-21678 | 0 | 0 | 0900006486019813 | ||
| BOEM_FRDOC_0001-0659 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Joint Record of Decision: Revolution Wind Farm and Revolution Wind Export Cable Project | Notice | 2023-08-24T04:00:00Z | 2023 | 8 | 2023-08-24T04:00:00Z | 2023-08-24T12:33:18Z | 2023-18244 | 0 | 0 | 0900006485ee0b76 | ||
| BOEM_FRDOC_0001-0644 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Oil and Gas Lease Sale: Outer Continental Shelf | Notice | 2023-05-04T04:00:00Z | 2023 | 5 | 2023-05-04T04:00:00Z | 2023-05-04T12:16:02Z | 2023-09457 | 0 | 0 | 09000064859c9d56 | ||
| BOEM_FRDOC_0001-0635 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Determination of No Competitive Interest in a Proposed Research Lease Area on the Gulf of Maine Outer Continental Shelf | Notice | 2023-03-20T04:00:00Z | 2023 | 3 | 2023-03-20T04:00:00Z | 2023-03-20T11:50:52Z | 2023-05639 | 0 | 0 | 09000064857fde20 | ||
| BOEM_FRDOC_0001-0634 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Sale for Gulf of Mexico Outer Continental Shelf Oil and Gas Lease Sale 261 | Notice | 2023-03-15T04:00:00Z | 2023 | 3 | 2023-03-15T18:41:43Z | 2023-05259 | 0 | 0 | 09000064857ab369 | |||
| BOEM_FRDOC_0001-0631 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Oil and Gas Lease Sale: Gulf of Mexico Outer Continental Shelf Sale 259 | Notice | 2023-02-27T05:00:00Z | 2023 | 2 | 2023-02-27T05:00:00Z | 2023-02-27T13:19:09Z | 2023-03973 | 0 | 0 | 090000648571c1a0 | ||
| BOEM_FRDOC_0001-0630 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Record of Decision: Gulf of Mexico, Outer Continental Shelf, Oil and Gas Lease Sale 259 | Notice | 2023-02-27T05:00:00Z | 2023 | 2 | 2023-02-27T05:00:00Z | 2023-02-27T13:17:55Z | 2023-03972 | 0 | 0 | 090000648571b8c8 | ||
| BOEM_FRDOC_0001-0620 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Environmental Impact Statements; Availability, etc.: Gulf of Mexico OCS Oil and Gas Lease Sales 259 and 261 | Notice | 2023-01-13T05:00:00Z | 2023 | 1 | 2023-01-13T05:00:00Z | 2023-01-13T12:46:36Z | 2023-00485 | 0 | 0 | 09000064855eb8c8 |
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;