documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "BOEM_FRDOC_0001" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0536 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Vineyard Wind LLC's Proposed Wind Energy Facility Offshore Massachusetts | Notice | 2020-12-16T05:00:00Z | 2020 | 12 | 2020-12-16T05:00:00Z | 2020-12-16T13:00:50Z | 2020-27701 | 0 | 0 | 09000064849a1ae2 | ||
| BOEM_FRDOC_0001-0535 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Oil and Gas and Sulfur Operations on the Outer Continental Shelf: Revisions to the Requirements for Exploratory Drilling on the Arctic Outer Continental Shelf | Proposed Rule | 2020-12-09T05:00:00Z | 2020 | 12 | 2020-12-09T05:00:00Z | 2021-02-09T04:59:59Z | 2021-02-09T02:00:36Z | 2020-25818 | 0 | 0 | 090000648498f9aa | |
| BOEM_FRDOC_0001-0534 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Environmental Impact Statements; Availability, etc.: Gulf of Mexico, Outer Continental Shelf, Geological and Geophysical Activities: Western, Central, and Eastern Planning Areas | Notice | 2020-12-04T05:00:00Z | 2020 | 12 | 2020-12-04T05:00:00Z | 2020-12-04T12:42:13Z | 2020-26781 | 0 | 0 | 0900006484985c6e | ||
| BOEM_FRDOC_0001-0532 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Gulf of Mexico Outer Continental Shelf Region-wide Oil and Gas Lease Sale 257 | Notice | 2020-11-18T05:00:00Z | 2020 | 11 | 2020-11-18T05:00:00Z | 2020-11-18T12:52:02Z | 2020-25518 | 0 | 0 | 09000064849661f4 | ||
| BOEM_FRDOC_0001-0527 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Outer Continental Shelf Oil and Gas Lease Sales | Notice | 2020-09-24T04:00:00Z | 2020 | 9 | 2020-09-24T04:00:00Z | 2020-09-24T11:48:12Z | 2020-21099 | 0 | 0 | 09000064848761f7 | ||
| BOEM_FRDOC_0001-0516 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | Oil and Gas Lease Sale: Outer Continental Shelf; MMAA104000 | Notice | 2020-04-17T04:00:00Z | 2020 | 4 | 2020-04-17T04:00:00Z | 2020-04-17T11:59:25Z | 2020-08181 | 0 | 0 | 09000064844b0f66 | ||
| BOEM_FRDOC_0001-0512 | BOEM | Recently Posted BOEM Rules and Notices. BOEM_FRDOC_0001 | 2020 Civil Penalties Inflation Adjustments for Oil, Gas, and Sulfur Operations in the Outer Continental Shelf | Rule | 2020-02-07T05:00:00Z | 2020 | 2 | 2020-02-07T05:00:00Z | 2020-02-07T12:49:47Z | 2020-02059 | 0 | 0 | 090000648433b826 |
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;