documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "PHMSA-2016-0002" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0002-0018 | PHMSA | Pipeline Safety: Periodic Updates of Regulatory References to Technical Standards and Miscellaneous Amendments. PHMSA-2016-0002 | Notice of Limited Enforcement Discretion - Standards Update 1_ (003) | Other | Decision | 2024-06-21T04:00:00Z | 2024 | 6 | 2024-06-21T04:00:00Z | 2024-06-21T12:16:49Z | 0 | 0 | 09000064865c1d44 | ||
| PHMSA-2016-0002-0017 | PHMSA | Pipeline Safety: Periodic Updates of Regulatory References to Technical Standards and Miscellaneous Amendments. PHMSA-2016-0002 | Motion to Stay - Final Rule | Other | Decision | 2024-06-20T04:00:00Z | 2024 | 6 | 2024-06-20T04:00:00Z | 2024-06-20T17:32:07Z | 0 | 0 | 09000064865bdee3 | ||
| PHMSA-2016-0002-0015 | PHMSA | Pipeline Safety: Periodic Updates of Regulatory References to Technical Standards and Miscellaneous Amendments. PHMSA-2016-0002 | GPA-API Motion to Stay - Filed 5.29.2024 (15831093.1) (002) | Other | Motion | 2024-06-07T04:00:00Z | 2024 | 6 | 2024-06-07T04:00:00Z | 2024-06-07T17:44:39Z | 0 | 0 | 090000648659e0e3 | ||
| PHMSA-2016-0002-0014 | PHMSA | Pipeline Safety: Periodic Updates of Regulatory References to Technical Standards and Miscellaneous Amendments. PHMSA-2016-0002 | 2024.5.29 Joint Trade Petition for Reconsideration IBR Rule FINAL (003) | Other | Petition for Reconsideration | 2024-06-07T04:00:00Z | 2024 | 6 | 2024-06-07T04:00:00Z | 2024-06-07T17:42:11Z | 0 | 0 | 090000648659e0df | ||
| PHMSA-2016-0002-0016 | PHMSA | Pipeline Safety: Periodic Updates of Regulatory References to Technical Standards and Miscellaneous Amendments. PHMSA-2016-0002 | GPA-API Petition for Reconsideration - Filed 5.29.2024 (15831096.1) | Other | Petition for Reconsideration | 2024-06-07T04:00:00Z | 2024 | 6 | 2024-06-07T04:00:00Z | 2024-06-07T17:46:54Z | 0 | 0 | 090000648659e0e5 | ||
| PHMSA-2016-0002-0012 | PHMSA | Pipeline Safety: Periodic Updates of Regulatory References to Technical Standards and Miscellaneous Amendments. PHMSA-2016-0002 | AGA - Petition to Modify Language in 49 CFR 192.11 | Other | Petition(s) | 2023-10-18T04:00:00Z | 2023 | 10 | 2023-10-18T04:00:00Z | 2023-10-18T18:58:57Z | 0 | 0 | 09000064861060dd | ||
| PHMSA-2016-0002-0011 | PHMSA | Pipeline Safety: Periodic Updates of Regulatory References to Technical Standards and Miscellaneous Amendments. PHMSA-2016-0002 | Joint Comment after PAC meeting | Other | Additional Information | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-26T04:00:00Z | 2023-07-26T20:25:28Z | 0 | 0 | 0900006485ce3568 | ||
| PHMSA-2016-0002-0010 | PHMSA | Pipeline Safety: Periodic Updates of Regulatory References to Technical Standards and Miscellaneous Amendments. PHMSA-2016-0002 | Joint Comment API AOPL GPA after PAC meeting | Other | Additional Information | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-26T04:00:00Z | 2023-07-26T20:25:00Z | 0 | 0 | 0900006485ce3563 |
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;