documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "PHMSA", document_type = "Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_date, posted_month, comment_start_date, last_modified, 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-2013-0008-0326 | PHMSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous PHMSA-2013-0008 | Revisions to Civil Penalty Amounts | Rule | Correction | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-29T04:00:00Z | 2024-11-12T23:10:27Z | C1-2019-14101 | 1 | 0 | 090000648410407d | |
| PHMSA-2016-0091-0010 | PHMSA | Enhanced Enforcement Authority Procedures PHMSA-2016-0091 | Pipeline Safety: Enhanced Emergency Order Procedures | Rule | Final Rule | 2019-10-01T04:00:00Z | 2019 | 10 | 2019-10-01T04:00:00Z | 2024-11-12T23:09:34Z | 2019-20308 | 1 | 0 | 0900006483ff2282 | |
| PHMSA-2011-0023-0464 | PHMSA | Pipeline Safety: Safety of Gas Transmission Pipelines PHMSA-2011-0023 | Pipeline Safety: Safety of Gas Transmission Pipelines: Maximum Allowable Operating Pressure Reconfirmation, Expansion of Assessment Requirements, and Other Related Amendments | Rule | Final Rule | 2019-10-01T04:00:00Z | 2019 | 10 | 2019-10-01T04:00:00Z | 2024-11-12T23:09:35Z | 2019-20306 | 1 | 0 | 0900006483ff1fd3 | |
| PHMSA-2010-0229-0135 | PHMSA | Pipeline Safety: Safety of Hazardous Liquid Pipelines PHMSA-2010-0229 | Pipeline Safety: Safety of Hazardous Liquid Pipelines | Rule | Final Rule | 2019-10-01T04:00:00Z | 2019 | 10 | 2019-10-01T04:00:00Z | 2024-11-12T23:09:35Z | 2019-20458 | 1 | 0 | 0900006483ff2286 | |
| PHMSA-2013-0008-0304 | PHMSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous PHMSA-2013-0008 | Revisions to Civil Penalty Amounts | Rule | Final Rule | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T04:00:00Z | 2019-09-11T19:58:21Z | 2019-14101 | 0 | 0 | 0900006483dd4938 | |
| PHMSA-2013-0008-0292 | PHMSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous PHMSA-2013-0008 | Conforming Amendments and Technical Corrections to Department Rules Implementing the Transportation Industry Drug Testing Program | Rule | Final Rule | 2019-04-23T04:00:00Z | 2019 | 4 | 2019-04-23T04:00:00Z | 2019-09-11T19:56:53Z | 2019-06986 | 0 | 0 | 0900006483be1966 | |
| PHMSA-2018-0086-0001 | PHMSA | Farm Taps Stay of Enforcement PHMSA-2018-0086 | Pipeline Safety: Exercise of Enforcement Discretion Regarding Farm Taps | Rule | Notice of Interim Rule | 2019-03-26T04:00:00Z | 2019 | 3 | 2019-03-26T04:00:00Z | 2024-11-12T22:57:15Z | 2019-05677 | 1 | 0 | 0900006483b2e3e2 | |
| PHMSA-2016-0014-0008 | PHMSA | Revised Lithium Battery Provisions PHMSA-2016-0014 | Hazardous Materials: Enhanced Safety Provisions for Lithium Batteries Transported by Aircraft | Rule | Interim Final Rule | 2019-03-06T05:00:00Z | 2019 | 3 | 2019-03-06T05:00:00Z | 2019-05-07T03:59:59Z | 2024-11-12T22:55:43Z | 2019-03812 | 1 | 0 | 0900006483ac24f3 |
| PHMSA-2014-0105-0374 | PHMSA | Hazardous Materials: Revisions to Oil Spill Prevention and Response Plans for Rail Transport PHMSA-2014-0105 | Hazardous Materials: Oil Spill Response Plans and Information Sharing for High-Hazard Flammable Trains | Rule | Final Rule | 2019-02-28T05:00:00Z | 2019 | 2 | 2019-02-28T05:00:00Z | 2024-11-12T22:56:22Z | 2019-02491 | 1 | 0 | 0900006483aaf468 | |
| PHMSA-2015-0272-0003 | PHMSA | Hazardous Materials: Revisions to Hazardous Materials Emergency Preparedness Grants Requirements (RRR) PHMSA-2015-0272 | Hazardous Materials: Revisions to Hazardous Materials Grants Requirements (FAST Act) | Rule | Final Rule | 2019-02-14T05:00:00Z | 2019 | 2 | 2019-02-14T05:00:00Z | 2024-11-12T22:54:41Z | 2019-02293 | 1 | 0 | 0900006483a74aad |
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;