documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "PHMSA-RSPA-2001-9930" and posted_year = 2001 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-RSPA-2001-9930-0005 | PHMSA | None PHMSA-RSPA-2001-9930 | Air Liquide America Corporation - Additional Information | Other | Additional Information | 2001-11-19T05:00:00Z | 2001 | 11 | 2001-11-19T05:00:00Z | 2001-12-06T04:59:59Z | 2008-01-08T20:25:27Z | 0 | 0 | 0900006480345545 | |
| PHMSA-RSPA-2001-9930-0012-0002 | PHMSA | None PHMSA-RSPA-2001-9930 | Air Liquide America Corporation - Additional Information on New Exemption Application | Other | Additional Information | 2001-11-19T05:00:00Z | 2001 | 11 | 2001-11-19T05:00:00Z | 2002-07-24T03:59:59Z | 2008-01-08T20:22:05Z | 0 | 0 | 0900006480345537 | |
| PHMSA-RSPA-2001-9930-0012-0001 | PHMSA | None PHMSA-RSPA-2001-9930 | Air Liquide America Corporation - Additional Information on New Exemption Application | Other | Additional Information | 2001-11-19T05:00:00Z | 2001 | 11 | 2001-11-19T05:00:00Z | 2002-07-24T03:59:59Z | 2008-01-08T20:26:25Z | 0 | 0 | 0900006480345536 | |
| PHMSA-RSPA-2001-9930-0011 | PHMSA | None PHMSA-RSPA-2001-9930 | The Chlorine Institute, Inc. - Response to Comment | Other | Response(s) | 2001-09-12T04:00:00Z | 2001 | 9 | 2001-09-12T04:00:00Z | 2002-07-24T03:59:59Z | 2008-01-08T20:26:25Z | 0 | 0 | 0900006480345535 | |
| PHMSA-RSPA-2001-9930-0004 | PHMSA | None PHMSA-RSPA-2001-9930 | HMT Associates, L.L.C. - Additional Information | Other | Additional Information | 2001-09-06T04:00:00Z | 2001 | 9 | 2001-09-06T04:00:00Z | 2001-09-07T03:59:59Z | 2008-01-08T20:22:05Z | 0 | 0 | 0900006480345544 | |
| PHMSA-RSPA-2001-9930-0010-0002 | PHMSA | None PHMSA-RSPA-2001-9930 | Air Liquide America Corporation - Response to Comment | Other | Response(s) | 2001-09-04T04:00:00Z | 2001 | 9 | 2001-09-04T04:00:00Z | 2002-07-24T03:59:59Z | 2008-01-08T20:18:19Z | 0 | 0 | 0900006480345534 | |
| PHMSA-RSPA-2001-9930-0010-0001 | PHMSA | None PHMSA-RSPA-2001-9930 | Air Liquide America Corporation - Response to Comment | Other | Response(s) | 2001-09-04T04:00:00Z | 2001 | 9 | 2001-09-04T04:00:00Z | 2002-07-24T03:59:59Z | 2008-01-08T20:25:27Z | 0 | 0 | 0900006480345533 | |
| PHMSA-RSPA-2001-9930-0003 | PHMSA | None PHMSA-RSPA-2001-9930 | The Chlorine Institute, Inc. - Additional Information | Other | Additional Information | 2001-08-21T04:00:00Z | 2001 | 8 | 2001-08-21T04:00:00Z | 2001-08-28T03:59:59Z | 2008-01-08T20:24:31Z | 0 | 0 | 0900006480345543 | |
| PHMSA-RSPA-2001-9930-0002 | PHMSA | None PHMSA-RSPA-2001-9930 | U.S. DOT/RSPA - List of Applicants for Exemptions | Rule | Federal Register Publication | 2001-07-03T04:00:00Z | 2001 | 7 | 2001-07-03T04:00:00Z | 2001-07-04T03:59:59Z | 2008-01-08T20:26:25Z | 0 | 0 | 0900006480345540 | |
| PHMSA-RSPA-2001-9930-0001 | PHMSA | None PHMSA-RSPA-2001-9930 | Air Liquide America Corporation - Exemption - Hazardous Materials - To Authorize the Transportation in Commerce of Chlorine in UnInsulated DOT Specification 3AAX Cylinders Permanently Mounted on a Motor Vehicle | Other | Application | 2001-05-24T04:00:00Z | 2001 | 5 | 2001-05-24T04:00:00Z | 2001-06-15T03:59:59Z | 2008-01-08T20:19:47Z | 0 | 0 | 0900006480345532 |
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;