documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "PHMSA", document_type = "Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2016-0016-0043 | PHMSA | Pipeline Safety: Safe Operations of Underground Storage Facilities for Natural Gas PHMSA-2016-0016 | Pipeline Safety: Safety of Underground Natural Gas Storage Facilities | Rule | Interim Final Rule | 2017-10-19T04:00:00Z | 2017 | 10 | 2017-10-19T04:00:00Z | 2017-11-21T04:59:59Z | 2024-11-07T00:59:28Z | 2017-22553 | 1 | 0 | 0900006482be3de5 |
| PHMSA-2017-0102-0017 | PHMSA | Regulatory Evaluation as required by the Fast Act; ECP Braking PHMSA-2017-0102 | Hazardous Materials: Enhanced Tank Car Standards and Operational Controls for High-Hazard Flammable Trains | Rule | Final Rule with Request for Comments | 2017-10-16T04:00:00Z | 2017 | 10 | 2017-10-16T04:00:00Z | 2017-11-02T03:59:59Z | 2024-11-07T01:18:01Z | 2017-22281 | 1 | 0 | 0900006482bcde06 |
| PHMSA-2016-0010-0002 | PHMSA | Pipeline Safety: Inflation Adjustment of Maximum Civil Penalties PHMSA-2016-0010 | Pipeline Safety: Inflation Adjustment of Maximum Civil Penalties | Rule | Final Rule | 2017-04-27T04:00:00Z | 2017 | 4 | 2017-04-27T04:00:00Z | 2017-04-27T14:43:01Z | 2017-08530 | 0 | 0 | 090000648257e233 | |
| PHMSA-2016-0041-0002 | PHMSA | Hazardous Materials: Revision of Maximum and Minimum Civil Penalties PHMSA-2016-0041 | Hazardous Materials: Revision of Maximum and Minimum Civil Penalties | Rule | Final Rule | 2017-04-19T04:00:00Z | 2017 | 4 | 2017-04-19T04:00:00Z | 2017-04-19T15:05:01Z | 2017-07908 | 0 | 0 | 090000648255f3c2 | |
| PHMSA-2016-0067-0001 | PHMSA | Pipeline Safety: Guidance on Training and Qualifications for the Integrity Management Program PHMSA-2016-0067 | Pipeline Safety: Guidance on Training and Qualifications for the Integrity Management Program | Rule | Notice of Interim Rule | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-10T04:00:00Z | 2024-11-07T00:56:15Z | 2017-06805 | 1 | 0 | 0900006482546203 | |
| PHMSA-2015-0273-0042 | PHMSA | Hazardous Materials: Harmonization with International Standards (RRR) PHMSA-2015-0273 | Hazardous Materials: Harmonization with International Standards | Rule | Final Rule | 2017-03-30T04:00:00Z | 2017 | 3 | 2017-03-30T04:00:00Z | 2017-03-30T14:41:39Z | 2017-04565 | 0 | 0 | 0900006482531158 | |
| PHMSA-2013-0163-0048 | PHMSA | Pipeline Safety: Operator Qualification, Cost Recovery, Accident and Incident Notification, and Other Changes PHMSA-2013-0163 | Pipeline Safety: Operator Qualification, Cost Recovery, Accident and Incident Notification, and Other Pipeline Safety Changes | Rule | Final Rule | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-01-23T21:04:21Z | 2016-31461 | 0 | 0 | 090000648248918c |
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;