documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "PHMSA-2017-0108" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2017-0108-0009 | PHMSA | Hazardous Materials: Harmonization with International Standards PHMSA-2017-0108 | Notice of Enforcement Policy Regarding International Standards December 2018 | Other | Letter(s) | 2018-12-19T05:00:00Z | 2018 | 12 | 2018-12-19T05:00:00Z | 2019-02-26T02:03:22Z | 0 | 0 | 09000064839b43f0 | ||
| PHMSA-2017-0108-0008 | PHMSA | Hazardous Materials: Harmonization with International Standards PHMSA-2017-0108 | Test Summary Brochure | Supporting & Related Material | Report | 2018-12-11T05:00:00Z | 2018 | 12 | 2018-12-11T19:45:31Z | 0 | 0 | 0900006483984dd2 | |||
| PHMSA-2017-0108-0006 | PHMSA | Hazardous Materials: Harmonization with International Standards PHMSA-2017-0108 | Competency Based Training Submitted by the Dangerous Goods Trainers Association (DGTA) | Supporting & Related Material | Report | 2018-11-29T05:00:00Z | 2018 | 11 | 2018-11-29T15:16:42Z | 0 | 0 | 0900006483906aaa | |||
| PHMSA-2017-0108-0004 | PHMSA | Hazardous Materials: Harmonization with International Standards PHMSA-2017-0108 | ICAO new training provisions | Supporting & Related Material | Meeting Materials | 2018-11-28T05:00:00Z | 2018 | 11 | 2018-11-28T18:49:09Z | 0 | 0 | 0900006483906b4e | |||
| PHMSA-2017-0108-0003 | PHMSA | Hazardous Materials: Harmonization with International Standards PHMSA-2017-0108 | Twenty-Sixth Meeting of the Dangerous Goods Panel (DGP) (2017) ; Montreal, from 16 to 27 October 2017 | Supporting & Related Material | Meeting Materials | 2018-11-28T05:00:00Z | 2018 | 11 | 2018-11-28T18:48:37Z | 0 | 0 | 0900006483906aac | |||
| PHMSA-2017-0108-0002 | PHMSA | Hazardous Materials: Harmonization with International Standards PHMSA-2017-0108 | Preliminary Regulatory Impact Analysis | Supporting & Related Material | Analysis | 2018-11-27T05:00:00Z | 2018 | 11 | 2018-11-27T20:11:19Z | 0 | 0 | 0900006483901a17 | |||
| PHMSA-2017-0108-0001 | PHMSA | Hazardous Materials: Harmonization with International Standards PHMSA-2017-0108 | Hazardous Materials: Harmonization with International Standards | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-11-27T05:00:00Z | 2018 | 11 | 2018-11-27T05:00:00Z | 2019-01-29T04:59:59Z | 2024-11-12T22:49:26Z | 2018-24620 | 1 | 0 | 09000064838fea42 |
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;