documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "PHMSA-2015-0100" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-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-2015-0100-0010 | PHMSA | Hazardous Materials: Notification of Pilot in Command Revisions PHMSA-2015-0100 | UPS Airline Dangerous Goods Department - Follow-up Letter | Other | Acknowledgement Letter/Receipt | 2018-01-12T05:00:00Z | 2018 | 1 | 2018-01-12T05:00:00Z | 2018-01-12T20:47:02Z | 0 | 0 | 0900006482ddb02e | ||
| PHMSA-2015-0100-0003 | PHMSA | Hazardous Materials: Notification of Pilot in Command Revisions PHMSA-2015-0100 | LabelMaster Services - P-1671-Petition for Rulemaking Pursuant to Title 49CFR 106 95 | Other | Petition(s) | 2016-12-21T05:00:00Z | 2016 | 12 | 2016-12-21T05:00:00Z | 2016-12-21T14:58:53Z | 0 | 0 | 090000648242b32d | ||
| PHMSA-2015-0100-0002 | PHMSA | Hazardous Materials: Notification of Pilot in Command Revisions PHMSA-2015-0100 | Petition for Expedited Amendments to 49 CFR 175.33 | Other | Petition(s) | 2016-12-21T05:00:00Z | 2016 | 12 | 2016-12-21T05:00:00Z | 2017-11-29T15:46:04Z | 0 | 0 | 0900006482404000 | ||
| PHMSA-2015-0100-0004 | PHMSA | Hazardous Materials: Notification of Pilot in Command Revisions PHMSA-2015-0100 | Dangerous Goods Transport - P-1649- Petition to amend §175_10(a)(18) for medical devices | Other | Petition(s) | 2016-12-21T05:00:00Z | 2016 | 12 | 2016-12-21T05:00:00Z | 2016-12-21T15:00:13Z | 0 | 0 | 090000648242b331 | ||
| PHMSA-2015-0100-0001 | 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 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-12-05T05:00:00Z | 2016 | 12 | 2016-12-05T05:00:00Z | 2017-02-04T04:59:59Z | 2024-11-11T21:32:06Z | 2016-28403 | 1 | 0 | 09000064823dee5e |
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;