documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "BSEE", document_type = "Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BSEE-2016-0010-0002 | BSEE | Interim Final Rule: Civil Penalty Adjustment BSEE-2016-0010 | Civil Penalty Inflation Adjustments | Rule | 2016-11-17T05:00:00Z | 2016 | 11 | 2016-11-17T05:00:00Z | 2016-11-18T12:49:13Z | 2016-27503 | 0 | 0 | 090000648239c5d7 | ||
| BSEE-2016-0004-0003 | BSEE | Proposed Rule: Oil and Gas and Sulphur Operations in the Outer Continental Shelf—Pipeline Decommissioning Costs BSEE-2016-0004 | Oil and Gas and Sulfur Operations on the Outer Continental Shelf: Decommissioning Costs for Pipelines | Rule | 2016-11-16T05:00:00Z | 2016 | 11 | 2016-11-16T05:00:00Z | 2016-11-16T15:09:56Z | 2016-27416 | 0 | 0 | 0900006482397f93 | ||
| BSEE-2012-0005-0072 | BSEE | AA10 - Oil and Gas Production Safety Systems BSEE-2012-0005 | Oil and Gas and Sulfur Operations on the Outer Continental Shelf: Oil and Gas Production Safety Systems | Rule | 2016-09-07T04:00:00Z | 2016 | 9 | 2016-09-07T04:00:00Z | 2016-09-07T13:40:06Z | 2016-20967 | 0 | 0 | 09000064821db836 | ||
| BSEE-2013-0011-1305 | BSEE | Requirements for Exploratory Drilling on the Arctic OCS BSEE-2013-0011 | Oil and Gas and Sulfur Operations on the Outer Continental Shelf: Requirements for Exploratory Drilling on the Arctic Outer Continental Shelf | Rule | 2016-07-15T04:00:00Z | 2016 | 7 | 2016-07-15T04:00:00Z | 2016-07-15T15:15:45Z | 2016-15699 | 0 | 0 | 09000064820b3f74 | ||
| BSEE-2016-0010-0001 | BSEE | Interim Final Rule: Civil Penalty Adjustment BSEE-2016-0010 | Civil Penalty Inflation Adjustments | Rule | 2016-06-28T04:00:00Z | 2016 | 6 | 2016-06-28T04:00:00Z | 2016-08-30T03:59:59Z | 2016-06-28T21:19:06Z | 2016-15157 | 0 | 0 | 0900006482074232 | |
| BSEE-2016-0006-0002 | BSEE | Technical Corrections BSEE-2016-0006 | Oil and Gas and Sulphur Operations in the Outer Continental Shelf; Technical Corrections; Correction | Rule | 2016-06-23T04:00:00Z | 2016 | 6 | 2016-06-23T04:00:00Z | 2016-06-28T21:15:13Z | 2016-14850 | 0 | 0 | 0900006482060a65 | ||
| BSEE-2016-0006-0001 | BSEE | Technical Corrections BSEE-2016-0006 | Oil and Gas and Sulphur Operations in the Outer Continental Shelf ; Corrections | Rule | 2016-06-06T04:00:00Z | 2016 | 6 | 2016-06-06T04:00:00Z | 2016-06-14T00:33:04Z | 2016-12487 | 0 | 0 | 0900006482014476 | ||
| BSEE-2015-0002-0206 | BSEE | Oil and Gas and Sulphur Operations in the Outer Continental Shelf--Blowout Preventer Systems and Well Control BSEE-2015-0002 | Oil and Gas and Sulfur Operations in the Outer Continental Shelf; Blowout Preventer Systems and Well Control | Rule | 2016-04-29T04:00:00Z | 2016 | 4 | 2016-04-29T04:00:00Z | 2016-04-29T15:17:59Z | 2016-08921 | 0 | 0 | 0900006481f980e0 |
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;