documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "PHMSA-2020-0008" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2020-0008-0006 | PHMSA | El Paso Natural Gas Pipeline, TX Special Permit Request PHMSA-2020-0008 | El Paso Natural Gas Company, LLC – 2023 Withdrawal Letter | Other | Withdrawal | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-26T04:00:00Z | 2023-07-26T14:02:27Z | 0 | 0 | 0900006485d4dc56 | ||
| PHMSA-2020-0008-0005 | PHMSA | El Paso Natural Gas Pipeline, TX Special Permit Request PHMSA-2020-0008 | El Paso Natural Gas Pipeline - PHMSAs Response to Request | Other | Agency Response | 2022-04-11T04:00:00Z | 2022 | 4 | 2022-04-11T04:00:00Z | 2022-04-11T17:15:02Z | 0 | 0 | 0900006484fee259 | ||
| PHMSA-2020-0008-0004 | PHMSA | El Paso Natural Gas Pipeline, TX Special Permit Request PHMSA-2020-0008 | 2020-0008 - EPNG - Class 1 to 3 Location Special Permit - Texas - DEA and Proposed FONSI - 01-15-2021 | Other | Special Permit | 2021-02-02T05:00:00Z | 2021 | 2 | 2021-02-02T05:00:00Z | 2025-06-17T19:26:05Z | 0 | 0 | 0900006484a14ab6 | ||
| PHMSA-2020-0008-0002 | PHMSA | El Paso Natural Gas Pipeline, TX Special Permit Request PHMSA-2020-0008 | Pipeline Safety: Request for Special Permit; El Paso Natural Gas Co., LLC | Notice | Notice of Intent | 2021-01-25T05:00:00Z | 2021 | 1 | 2021-01-25T05:00:00Z | 2021-02-25T04:59:59Z | 2025-06-16T16:23:45Z | 2021-01522 | 0 | 0 | 09000064849fec55 |
| PHMSA-2020-0008-0001 | PHMSA | El Paso Natural Gas Pipeline, TX Special Permit Request PHMSA-2020-0008 | El Paso Natural Gas SP Request | Other | Special Permit | 2020-01-09T05:00:00Z | 2020 | 1 | 2020-01-09T05:00:00Z | 2020-01-09T20:11:54Z | 0 | 0 | 09000064842827da |
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;