documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "PHMSA-2018-0105" 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-2018-0105-0009 | PHMSA | Special Permit Application-Gulfstream Natural Gas System, LLC PHMSA-2018-0105 | Gulfstream PHMSA Special Permit Annual Report 2024 | Other | Report | 2024-05-28T04:00:00Z | 2024 | 5 | 2024-05-28T04:00:00Z | 2024-05-28T14:31:43Z | 0 | 0 | 090000648657da18 | ||
| PHMSA-2018-0105-0008 | PHMSA | Special Permit Application-Gulfstream Natural Gas System, LLC PHMSA-2018-0105 | The Williams Company - Gulfstream Special Permit Annual Report May 16 2023 | Other | Report | 2023-05-19T04:00:00Z | 2023 | 5 | 2023-05-19T04:00:00Z | 2023-05-19T17:56:29Z | 0 | 0 | 0900006485a232de | ||
| PHMSA-2018-0105-0006 | PHMSA | Special Permit Application-Gulfstream Natural Gas System, LLC PHMSA-2018-0105 | 2022 Gulfstream Special Permit Annual Report | Other | Report | 2022-05-10T04:00:00Z | 2022 | 5 | 2022-05-10T04:00:00Z | 2022-05-12T15:58:55Z | 0 | 0 | 0900006485066e46 | ||
| PHMSA-2018-0105-0005 | PHMSA | Special Permit Application-Gulfstream Natural Gas System, LLC PHMSA-2018-0105 | Gulfstream Pipeline - Letter of Decision - Special Permit for Usage of Pressure Gradient | Other | Decision | 2022-02-14T05:00:00Z | 2022 | 2 | 2022-02-14T05:00:00Z | 2022-02-14T13:02:21Z | 0 | 0 | 0900006484f6d69b | ||
| PHMSA-2018-0105-0004 | PHMSA | Special Permit Application-Gulfstream Natural Gas System, LLC PHMSA-2018-0105 | Gulfstream VI EA Cover Letter 29 Oct 18 and July 2019 Draft Environmental Assessment | Other | Letter(s) | 2021-05-19T04:00:00Z | 2021 | 5 | 2021-05-19T04:00:00Z | 2021-05-19T19:10:07Z | 0 | 0 | 0900006484b1ce2f | ||
| PHMSA-2018-0105-0001 | PHMSA | Special Permit Application-Gulfstream Natural Gas System, LLC PHMSA-2018-0105 | Gulfstream VI EA Cover Letter 29 Oct 18 and July 2019 Draft Environmental Assessment | Other | Letter(s) | 2018-10-30T04:00:00Z | 2018 | 10 | 2018-10-30T04:00:00Z | 2025-06-16T20:30:53Z | 0 | 0 | 09000064838693d6 |
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;