documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-2017-0043" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2017-0043-0029 | DOT | None DOT-OST-2017-0043 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Oil and Gas IndustrySafety Data Program | Notice | Request for Comments | 2022-06-16T04:00:00Z | 2022 | 6 | 2022-06-16T04:00:00Z | 2022-07-19T03:59:59Z | 2022-06-16T15:33:37Z | 2022-12981 | 0 | 0 | 090000648516dd04 |
| DOT-OST-2017-0043-0028 | DOT | None DOT-OST-2017-0043 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Barrier Failure Reporting in Oil and Gas Operations on the Outer Continental Shelf | Notice | Request for Comments | 2022-03-07T05:00:00Z | 2022 | 3 | 2022-03-17T04:00:00Z | 2022-04-07T03:59:59Z | 2022-03-17T15:23:37Z | 2022-04682 | 0 | 0 | 0900006484fcc7e8 |
| DOT-OST-2017-0043-0026 | DOT | None DOT-OST-2017-0043 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Oil and Gas Industry Safety Data Program | Notice | Request for Comments | 2018-07-18T04:00:00Z | 2018 | 7 | 2018-07-18T04:00:00Z | 2018-08-18T03:59:59Z | 2018-08-13T12:50:06Z | 2018-15316 | 0 | 0 | 09000064835182a7 |
| DOT-OST-2017-0043-0023 | DOT | None DOT-OST-2017-0043 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Oil and Gas Industry Safety Data Program | Notice | Request for Comments | 2018-05-07T04:00:00Z | 2018 | 5 | 2018-05-07T04:00:00Z | 2018-07-07T03:59:59Z | 2018-06-02T01:03:41Z | 2018-09613 | 0 | 0 | 09000064832361c6 |
| DOT-OST-2017-0043-0012 | DOT | None DOT-OST-2017-0043 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Barrier Failure Reporting in Oil and Gas Operations on Outer Continental Shelf; OMB Number Correction | Notice | 30 Day Proposed Information Collection | 2018-02-21T05:00:00Z | 2018 | 2 | 2018-02-21T05:00:00Z | 2018-03-24T03:59:59Z | 2018-03-24T01:03:26Z | 2018-03508 | 0 | 0 | 0900006482f4ca32 |
| DOT-OST-2017-0043-0002 | DOT | None DOT-OST-2017-0043 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Barrier Failure Reporting in Oil and Gas Operations on Outer Continental Shelf | Notice | Notice of Intent | 2017-11-27T05:00:00Z | 2017 | 11 | 2017-11-27T05:00:00Z | 2017-12-28T04:59:59Z | 2018-03-21T12:30:13Z | 2017-25565 | 0 | 0 | 0900006482cae4af |
| DOT-OST-2017-0043-0001 | DOT | None DOT-OST-2017-0043 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Barrier Failure Reporting in Oil and Gas Operations on Outer Continental Shelf | Notice | Request for Comments | 2017-03-30T04:00:00Z | 2017 | 3 | 2017-03-30T04:00:00Z | 2017-05-31T03:59:59Z | 2017-04-05T14:19:26Z | 2017-06272 | 0 | 0 | 09000064825311db |
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;