documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "PHMSA-2016-0015" 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-0015-0062 | PHMSA | Hazardous Materials: Real-time Emergency Response Information by Rail PHMSA-2016-0015 | Comment from Keith A. Drabick | Other | Letter(s) in Support | 2025-07-01T04:00:00Z | 2025 | 7 | 2025-07-01T04:00:00Z | 2025-11-03T18:58:26Z | 0 | 0 | 09000064b8e4b98e | ||
| PHMSA-2016-0015-0060 | PHMSA | Hazardous Materials: Real-time Emergency Response Information by Rail PHMSA-2016-0015 | CPKC Petition HM-263 | Other | Supplement (SUP) | 2025-03-20T04:00:00Z | 2025 | 3 | 2025-03-20T04:00:00Z | 2025-03-20T18:16:20Z | 0 | 0 | 0900006486a162ca | ||
| PHMSA-2016-0015-0061 | PHMSA | Hazardous Materials: Real-time Emergency Response Information by Rail PHMSA-2016-0015 | AAR Petition M-263 | Other | Supplement (SUP) | 2025-03-20T04:00:00Z | 2025 | 3 | 2025-03-20T04:00:00Z | 2025-03-20T18:16:24Z | 0 | 0 | 0900006486a162cc | ||
| PHMSA-2016-0015-0056 | PHMSA | Hazardous Materials: Real-time Emergency Response Information by Rail PHMSA-2016-0015 | Summary of Listening Session w/ AFL-CIO Transportation Trades Department & Other Unions on HM-263 | Other | Summary (SUM) | 2024-04-03T04:00:00Z | 2024 | 4 | 2024-04-03T04:00:00Z | 2024-04-03T14:47:28Z | 0 | 0 | 09000064864b872a | ||
| PHMSA-2016-0015-0054 | PHMSA | Hazardous Materials: Real-time Emergency Response Information by Rail PHMSA-2016-0015 | Summary of Listening Session | Other | Summary (SUM) | 2024-03-22T04:00:00Z | 2024 | 3 | 2024-03-22T04:00:00Z | 2024-03-22T13:18:09Z | 0 | 0 | 090000648648d27c | ||
| PHMSA-2016-0015-0052 | PHMSA | Hazardous Materials: Real-time Emergency Response Information by Rail PHMSA-2016-0015 | Summary of Listening Session w/ the National Association of State 911 Administrators | Other | Hearing/Meeting Summary | 2024-03-12T04:00:00Z | 2024 | 3 | 2024-03-12T04:00:00Z | 2024-03-12T20:49:10Z | 0 | 0 | 0900006486474c27 |
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;