documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "PHMSA-2005-21812" 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-2005-21812-0030 | PHMSA | Hazardous Materials; Miscellaneous Amendments PHMSA-2005-21812 | U.S.DOT/PHMSA - Response Letter | Other | Response(s) | 2008-06-06T04:00:00Z | 2008 | 6 | 2008-06-06T04:00:00Z | 2013-07-27T22:15:49Z | 0 | 0 | 0900006480612e02 | ||
| PHMSA-2005-21812-0029 | PHMSA | Hazardous Materials; Miscellaneous Amendments PHMSA-2005-21812 | International Vessel Operators Hazardous Materials Association, Inc. - Response | Other | Response(s) | 2008-04-07T04:00:00Z | 2008 | 4 | 2008-04-07T04:00:00Z | 2013-07-28T01:31:45Z | 0 | 0 | 090000648043abd7 | ||
| PHMSA-2005-21812-0028 | PHMSA | Hazardous Materials; Miscellaneous Amendments PHMSA-2005-21812 | American Pyrotechnics Association, Institute of Makers of Explosives and Nuclear Energy Institute - Appeal | Other | Appeal | 2008-03-03T05:00:00Z | 2008 | 3 | 2008-03-03T05:00:00Z | 2013-07-27T20:36:35Z | 0 | 0 | 09000064803d620b | ||
| PHMSA-2005-21812-0027 | PHMSA | Hazardous Materials; Miscellaneous Amendments PHMSA-2005-21812 | Dangerous Goods Advisory Council - Appeal | Other | Appeal | 2008-02-29T05:00:00Z | 2008 | 2 | 2008-02-29T05:00:00Z | 2013-08-11T04:03:30Z | 0 | 0 | 09000064803d0c0e | ||
| PHMSA-2005-21812-0025 | PHMSA | Hazardous Materials; Miscellaneous Amendments PHMSA-2005-21812 | Hydro-Test Products, Inc. - Appeal to the Final Rule | Other | Appeal | 2008-02-08T05:00:00Z | 2008 | 2 | 2008-02-08T05:00:00Z | 2024-11-11T21:37:40Z | 1 | 0 | 09000064803aa480 | ||
| PHMSA-2005-21812-0024 | PHMSA | Hazardous Materials; Miscellaneous Amendments PHMSA-2005-21812 | Letter of Clarification Ref. No. 01-0082R - Ethanol Marking | Other | Letter(s) | 2008-01-30T05:00:00Z | 2008 | 1 | 2008-01-30T05:00:00Z | 2024-11-07T01:40:56Z | 1 | 0 | 09000064803a4eca | ||
| PHMSA-2005-21812-0022 | PHMSA | Hazardous Materials; Miscellaneous Amendments PHMSA-2005-21812 | National Archives and Records Administration - Approval of Standards | Other | Correspondence | 2007-06-29T04:00:00Z | 2007 | 6 | 2007-06-29T04:00:00Z | 2007-06-30T03:59:59Z | 2024-11-11T22:17:29Z | 1 | 0 | 09000064802bc919 |
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;