documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "PHMSA-2014-0018" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| PHMSA-2014-0018-0009 | PHMSA | Pipeline Safety: Information Collection Activities, Revisions to OPID Assignment Request and Operator Registry Notification PHMSA-2014-0018 | U.S. DOT/PHMSA - Clean Version OpID Assignment Instructions - PHMSA F1000.1 (rev xy-2014) 2014-07-07 | Other | Report | 2014-07-07T04:00:00Z | 2014 | 7 | 2014-07-07T04:00:00Z | 2014-07-07T19:02:06Z | 0 | 0 | 090000648179358e | ||
| PHMSA-2014-0018-0008 | PHMSA | Pipeline Safety: Information Collection Activities, Revisions to OPID Assignment Request and Operator Registry Notification PHMSA-2014-0018 | U.S. DOT/PHMSA - Clean Version OpID Assignment Form - PHMSA F 1000.1 (rev xy-2013) 2014-07-07 | Other | Report | 2014-07-07T04:00:00Z | 2014 | 7 | 2014-07-07T04:00:00Z | 2014-07-07T19:00:34Z | 0 | 0 | 090000648179352f | ||
| PHMSA-2014-0018-0006 | PHMSA | Pipeline Safety: Information Collection Activities, Revisions to OPID Assignment Request and Operator Registry Notification PHMSA-2014-0018 | U.S. DOT/PHMSA - Clean Version Notification Form - PHMSA F 1000.2 (rev xy-2014) 2014-07-07 | Other | Report | 2014-07-07T04:00:00Z | 2014 | 7 | 2014-07-07T04:00:00Z | 2014-07-07T18:35:43Z | 0 | 0 | 090000648179352b | ||
| PHMSA-2014-0018-0007 | PHMSA | Pipeline Safety: Information Collection Activities, Revisions to OPID Assignment Request and Operator Registry Notification PHMSA-2014-0018 | U.S. DOT/PHMSA - Clean Version Notification Instructions - PHMSA F1000.2 (rev xy-2014) 2014-07-07 | Other | Report | 2014-07-07T04:00:00Z | 2014 | 7 | 2014-07-07T04:00:00Z | 2014-07-07T18:40:25Z | 0 | 0 | 090000648179352d | ||
| PHMSA-2014-0018-0005 | PHMSA | Pipeline Safety: Information Collection Activities, Revisions to OPID Assignment Request and Operator Registry Notification PHMSA-2014-0018 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Operator Identification Assignment Request and Operator Registry Notification | Notice | Request for Comments | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-08-01T03:59:59Z | 2014-08-01T01:06:21Z | 2014-15301 | 0 | 0 | 0900006481778605 |
| PHMSA-2014-0018-0003 | PHMSA | Pipeline Safety: Information Collection Activities, Revisions to OPID Assignment Request and Operator Registry Notification PHMSA-2014-0018 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Pipeline Safety; Revisions to Operator Identification Assignment Request and Operator Registry Notification | Notice | Request for Comments | 2014-03-31T04:00:00Z | 2014 | 3 | 2014-03-31T04:00:00Z | 2014-05-31T03:59:59Z | 2024-11-11T20:49:39Z | 2014-07075 | 1 | 0 | 09000064816912a8 |
| PHMSA-2014-0018-0002 | PHMSA | Pipeline Safety: Information Collection Activities, Revisions to OPID Assignment Request and Operator Registry Notification PHMSA-2014-0018 | U.S. DOT/PHMSA - Red-Lined OPID Notification Form and Instructions (60-Day FR Notice) | Supporting & Related Material | Supplement | 2014-02-21T05:00:00Z | 2014 | 2 | 2014-02-21T16:35:32Z | 0 | 0 | 0900006481593379 | |||
| PHMSA-2014-0018-0001 | PHMSA | Pipeline Safety: Information Collection Activities, Revisions to OPID Assignment Request and Operator Registry Notification PHMSA-2014-0018 | U.S. DOT/PHMSA - Red-Lined OPID Assignment Form and Instructions (60-Day FR Notice) | Supporting & Related Material | Supplement | 2014-02-21T05:00:00Z | 2014 | 2 | 2014-02-21T16:31:32Z | 0 | 0 | 09000064815932bc |
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;