documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "PHMSA-2014-0094" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2014-0094-0008 | PHMSA | Dangerous Goods Advisory Council - Petition for Rulemaking (P-1637) PHMSA-2014-0094 | U.S. DOT/PHMSA - Acceptance Letter - re: Petition -1637 | Other | Letter(s) | 2015-11-12T05:00:00Z | 2015 | 11 | 2015-11-12T05:00:00Z | 2015-11-12T18:55:48Z | 0 | 0 | 0900006481d30505 | ||
| PHMSA-2014-0094-0007 | PHMSA | Dangerous Goods Advisory Council - Petition for Rulemaking (P-1637) PHMSA-2014-0094 | Dangerous Goods Advisory Council (DGAC) - Petition for Rulemaking - Air Special Provisions A3, AG | Other | Petition(s) | 2014-12-22T05:00:00Z | 2014 | 12 | 2014-12-22T05:00:00Z | 2014-12-22T16:24:51Z | 0 | 0 | 090000648198765b | ||
| PHMSA-2014-0094-0005 | PHMSA | Dangerous Goods Advisory Council - Petition for Rulemaking (P-1637) PHMSA-2014-0094 | Copy of A3 Column 7 PG II and III - Assessment Document or Analysis | Other | Acknowledgement Letter/Receipt | 2014-12-02T05:00:00Z | 2014 | 12 | 2014-12-02T05:00:00Z | 2014-12-02T16:12:51Z | 0 | 0 | 09000064819520b2 | ||
| PHMSA-2014-0094-0003 | PHMSA | Dangerous Goods Advisory Council - Petition for Rulemaking (P-1637) PHMSA-2014-0094 | Copy of A3 Column 7 PG 1 - Assessment Document or Analysis | Other | Assessment Document or Analysis | 2014-12-02T05:00:00Z | 2014 | 12 | 2014-12-02T05:00:00Z | 2014-12-02T16:07:21Z | 0 | 0 | 09000064819520ad | ||
| PHMSA-2014-0094-0004 | PHMSA | Dangerous Goods Advisory Council - Petition for Rulemaking (P-1637) PHMSA-2014-0094 | Copy of A6 Column 7 PG 1 - Assessment Document or Analysis | Other | Assessment Document or Analysis | 2014-12-02T05:00:00Z | 2014 | 12 | 2014-12-02T05:00:00Z | 2014-12-02T16:10:59Z | 0 | 0 | 09000064819520ab | ||
| PHMSA-2014-0094-0006 | PHMSA | Dangerous Goods Advisory Council - Petition for Rulemaking (P-1637) PHMSA-2014-0094 | Copy of A6 Column 7 PG II and III - Assessment Document or Analys | Other | Assessment Document or Analysis | 2014-12-02T05:00:00Z | 2014 | 12 | 2014-12-02T05:00:00Z | 2014-12-02T16:14:27Z | 0 | 0 | 090000648195252a | ||
| PHMSA-2014-0094-0002 | PHMSA | Dangerous Goods Advisory Council - Petition for Rulemaking (P-1637) PHMSA-2014-0094 | U.S.DOT/PHMSA - Acknolwledgement/Receipt | Other | Acknowledgement Letter/Receipt | 2014-07-10T04:00:00Z | 2014 | 7 | 2014-07-10T04:00:00Z | 2014-07-10T20:19:49Z | 0 | 0 | 090000648179492f | ||
| PHMSA-2014-0094-0001 | PHMSA | Dangerous Goods Advisory Council - Petition for Rulemaking (P-1637) PHMSA-2014-0094 | Dangerous Goods Advisory Council - Exemption/Rulemaking | Other | Petition(s) | 2014-06-23T04:00:00Z | 2014 | 6 | 2014-06-23T04:00:00Z | 2014-06-23T17:21:11Z | 0 | 0 | 0900006481759622 |
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;