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 = "Proposed Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| PHMSA-2019-0199-0005 | PHMSA | Pipeline Safety: Midstream Facilities FAQs PHMSA-2019-0199 | Pipeline Safety: Midstream Facilities Frequently Asked Questions | Proposed Rule | Extension of Comment Period | 2020-12-16T05:00:00Z | 2020 | 12 | 2020-12-16T05:00:00Z | 2021-02-05T04:59:59Z | 2024-11-12T23:26:49Z | 2020-27560 | 1 | 0 | 09000064849a1a47 |
| PHMSA-2019-0199-0001 | PHMSA | Pipeline Safety: Midstream Facilities FAQs PHMSA-2019-0199 | Pipeline Safety: Midstream Facilities Frequently Asked Questions | Proposed Rule | Request for Comment | 2020-11-04T05:00:00Z | 2020 | 11 | 2020-11-04T05:00:00Z | 2021-01-05T04:59:59Z | 2024-11-06T23:42:36Z | 2020-24011 | 1 | 0 | 090000648494a097 |
| PHMSA-2017-0151-0031 | PHMSA | Pipeline Safety: Class Location Change Requirements PHMSA-2017-0151 | Pipeline Safety: Class Location Change Requirements | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-10-14T04:00:00Z | 2020 | 10 | 2020-10-14T04:00:00Z | 2020-12-15T04:59:59Z | 2024-11-12T23:24:45Z | 2020-19872 | 1 | 0 | 09000064849094ce |
| PHMSA-2018-0046-0010 | PHMSA | Pipeline Safety: Gas Pipeline Regulatory Reform PHMSA-2018-0046 | Pipeline Safety: Gas Pipeline Regulatory Reform | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-06-09T04:00:00Z | 2020 | 6 | 2020-06-09T04:00:00Z | 2020-08-11T03:59:59Z | 2024-11-12T23:21:45Z | 2020-11843 | 1 | 0 | 09000064846d9bfc |
| PHMSA-2016-0077-0092 | PHMSA | Hazardous Materials: Volatilty of Unrefined Petroleum Products and Class 3 Materials PHMSA-2016-0077 | Hazardous Materials: Vapor Pressure of Unrefined Petroleum Products and Class 3 Materials | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2020-05-20T04:00:00Z | 2020 | 5 | 2020-05-20T04:00:00Z | 2024-11-06T23:36:54Z | 2020-10377 | 1 | 0 | 090000648464d7fc | |
| PHMSA-2019-0131-0003 | PHMSA | Pipeline Safety: Farm Taps FAQ PHMSA-2019-0131 | Pipeline Safety: Farm Taps Frequently Asked Questions | Proposed Rule | Request for Comment | 2020-04-20T04:00:00Z | 2020 | 4 | 2020-04-20T04:00:00Z | 2020-06-20T03:59:59Z | 2024-11-06T23:33:41Z | 2020-07922 | 1 | 0 | 09000064844b7f24 |
| PHMSA-2018-0047-0003 | PHMSA | Pipeline Safety: Liquid Pipeline Regulatory Reform PHMSA-2018-0047 | Pipeline Safety: Regulatory Reform for Hazardous Liquid Pipelines | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-04-16T04:00:00Z | 2020 | 4 | 2020-04-16T04:00:00Z | 2020-06-16T03:59:59Z | 2024-11-06T23:35:13Z | 2020-05721 | 1 | 0 | 09000064844ab978 |
| PHMSA-2013-0255-0005 | PHMSA | Pipeline Safety: Amendments to Parts 192 and 195 to Require Valve Installation and Minimum Rupture Detection Standards PHMSA-2013-0255 | Pipeline Safety: Valve Installation and Minimum Rupture Detection Standards | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-02-06T05:00:00Z | 2020 | 2 | 2020-02-06T05:00:00Z | 2020-04-07T03:59:59Z | 2024-11-12T23:16:57Z | 2020-01459 | 1 | 0 | 0900006484333964 |
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;