documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "PHMSA", document_type = "Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_month, open_for_comment, posted_date (date), comment_start_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-0276 | PHMSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous PHMSA-2013-0008 | Revisions to Civil Penalty Amounts | Rule | Final Rule | 2018-11-27T05:00:00Z | 2018 | 11 | 2018-11-27T05:00:00Z | 2018-11-27T15:22:21Z | 2018-24930 | 0 | 0 | 09000064838fe855 | |
| PHMSA-2014-0098-0062 | PHMSA | Plastic Pipe Rule PHMSA-2014-0098 | Pipeline Safety: Plastic Pipe Rule | Rule | Final Rule | 2018-11-20T05:00:00Z | 2018 | 11 | 2018-11-20T05:00:00Z | 2024-11-12T22:50:14Z | 2018-24925 | 1 | 0 | 09000064838ec6ce | |
| PHMSA-2015-0102-0029 | PHMSA | HM-219A -Response to Petitions PHMSA-2015-0102 | Hazardous Materials: Response to Petitions from Industry to Modify, Clarify, or Eliminate Regulations | Rule | Final Rule | 2018-11-07T05:00:00Z | 2018 | 11 | 2018-11-07T05:00:00Z | 2024-11-12T22:48:47Z | 2018-23965 | 1 | 0 | 09000064838a7a80 | |
| PHMSA-2015-0100-0012 | PHMSA | Hazardous Materials: Notification of Pilot in Command Revisions PHMSA-2015-0100 | Hazardous Materials: Pilot-in-Command and Response to Air Related Petitions for Rulemaking | Rule | Correction | 2018-10-31T04:00:00Z | 2018 | 10 | 2018-10-31T04:00:00Z | 2024-11-12T22:49:06Z | C1-2018-22114 | 1 | 0 | 0900006483873366 | |
| PHMSA-2015-0100-0011 | PHMSA | Hazardous Materials: Notification of Pilot in Command Revisions PHMSA-2015-0100 | Hazardous Materials: Pilot-in-Command and Response to Air Related Petitions for Rulemaking | Rule | Final Rule | 2018-10-18T04:00:00Z | 2018 | 10 | 2018-10-18T04:00:00Z | 2024-11-07T01:27:41Z | 2018-22114 | 1 | 0 | 0900006483803bb2 | |
| PHMSA-2017-0102-0038 | PHMSA | Regulatory Evaluation as required by the Fast Act; ECP Braking PHMSA-2017-0102 | Hazardous Materials: Removal of Electronically Controlled Pneumatic Brake System Requirements for High Hazard Flammable Unit Trains | Rule | Final Rule | 2018-09-25T04:00:00Z | 2018 | 9 | 2018-09-25T04:00:00Z | 2024-11-12T06:18:21Z | 2018-20647 | 1 | 0 | 090000648376c4c5 | |
| PHMSA-2013-0225-0083 | PHMSA | Hazardous Materials Miscellanous Amendments PHMSA-2013-0225 | Hazardous Materials: Miscellaneous Amendments; Response to Appeals; Corrections | Rule | Correction | 2018-06-18T04:00:00Z | 2018 | 6 | 2018-06-18T04:00:00Z | 2024-11-07T01:31:17Z | 2018-12961 | 1 | 0 | 0900006483424772 | |
| PHMSA-2013-0008-0233 | PHMSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous PHMSA-2013-0008 | General Information, regulations, and Definitions; CFR Correction | Rule | Notice of Interim Rule | 2018-02-05T05:00:00Z | 2018 | 2 | 2018-02-05T05:00:00Z | 2019-09-11T19:50:08Z | 2018-02303 | 0 | 0 | 0900006482eea37c |
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;