documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "PHMSA-2019-0100" 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-2019-0100-3009 | PHMSA | Hazardous Materials Safety: Notice of Availability of the Draft Environmental Assessment for a Special Permit Request for Liquefied Natural Gas by Rail PHMSA-2019-0100 | Notes from the Meeting with PHMSA Executives and Florida East Coast Industries | Other | Record of Meeting/Phone Conversation | 2020-02-24T05:00:00Z | 2020 | 2 | 2020-02-24T05:00:00Z | 2020-02-24T20:06:08Z | 0 | 0 | 09000064843ab0c7 | ||
| PHMSA-2019-0100-2934 | PHMSA | Hazardous Materials Safety: Notice of Availability of the Draft Environmental Assessment for a Special Permit Request for Liquefied Natural Gas by Rail PHMSA-2019-0100 | PHMSA Response to Comment Period Extension Request | Other | Supplemental Comment | 2019-08-09T04:00:00Z | 2019 | 8 | 2019-08-09T04:00:00Z | 2019-08-09T19:12:54Z | 0 | 0 | 0900006483e23a02 | ||
| PHMSA-2019-0100-1112 | PHMSA | Hazardous Materials Safety: Notice of Availability of the Draft Environmental Assessment for a Special Permit Request for Liquefied Natural Gas by Rail PHMSA-2019-0100 | Request for Comment Period Extension- Earthjustice | Other | Request | 2019-07-10T04:00:00Z | 2019 | 7 | 2019-07-10T04:00:00Z | 2019-08-11T05:57:45Z | 0 | 0 | 0900006483d78d77 | ||
| PHMSA-2019-0100-0940 | PHMSA | Hazardous Materials Safety: Notice of Availability of the Draft Environmental Assessment for a Special Permit Request for Liquefied Natural Gas by Rail PHMSA-2019-0100 | ETS LLC Quantitative Risk Analysis (QRA) | Other | Assessment Document or Analysis | 2019-07-09T04:00:00Z | 2019 | 7 | 2019-07-09T04:00:00Z | 2019-07-09T14:34:10Z | 0 | 0 | 0900006483d6e65a | ||
| PHMSA-2019-0100-0942 | PHMSA | Hazardous Materials Safety: Notice of Availability of the Draft Environmental Assessment for a Special Permit Request for Liquefied Natural Gas by Rail PHMSA-2019-0100 | LNG by Rail SP UPDATED Draft EA | Other | Assessment Document or Analysis | 2019-07-09T04:00:00Z | 2019 | 7 | 2019-07-09T04:00:00Z | 2019-07-09T14:34:49Z | 0 | 0 | 0900006483d6e7a5 | ||
| PHMSA-2019-0100-0939 | PHMSA | Hazardous Materials Safety: Notice of Availability of the Draft Environmental Assessment for a Special Permit Request for Liquefied Natural Gas by Rail PHMSA-2019-0100 | Letter from Chairman T&I Committee 6-28-19 | Other | Letter(s) | 2019-07-09T04:00:00Z | 2019 | 7 | 2019-07-09T04:00:00Z | 2019-07-09T14:33:23Z | 0 | 0 | 0900006483d6e657 | ||
| PHMSA-2019-0100-0941 | PHMSA | Hazardous Materials Safety: Notice of Availability of the Draft Environmental Assessment for a Special Permit Request for Liquefied Natural Gas by Rail PHMSA-2019-0100 | ETS LLC SP 20534 Application (REDACTED) | Other | Application | 2019-07-09T04:00:00Z | 2019 | 7 | 2019-07-09T04:00:00Z | 2019-07-09T14:34:36Z | 0 | 0 | 0900006483d6e26c | ||
| PHMSA-2019-0100-0918 | PHMSA | Hazardous Materials Safety: Notice of Availability of the Draft Environmental Assessment for a Special Permit Request for Liquefied Natural Gas by Rail PHMSA-2019-0100 | Energy Transport Solutions, LLC - Letter from Chairman T&I Committee, Quantitative Risk Analysis (QRA) and Application | Other | 2019-07-08T00:00:00Z | 2019 | 7 | 2019-07-09T14:17:56Z | 0 | 1 | 0900006483d6953e | ||||
| PHMSA-2019-0100-0001 | PHMSA | Hazardous Materials Safety: Notice of Availability of the Draft Environmental Assessment for a Special Permit Request for Liquefied Natural Gas by Rail PHMSA-2019-0100 | Special Permit- Draft and Environmental Assessment | Other | Report | 2019-06-05T04:00:00Z | 2019 | 6 | 2019-06-05T04:00:00Z | 2019-06-27T12:52:01Z | 0 | 0 | 0900006483cee9a1 |
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;