documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "PHMSA-2017-0158" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, 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-2017-0158-0006 | PHMSA | Empire Pipeline-Drafts-Environmental Assessment and Special Permit Conditions for public comments PHMSA-2017-0158 | Pipeline Safety; Special Permit Requests: Empire Pipeline-A National Fuel Gas Co. | Notice | Notice of Intent | 2018-07-25T04:00:00Z | 2018 | 7 | 2018-07-25T04:00:00Z | 2018-08-25T03:59:59Z | 2025-06-16T20:35:01Z | 2018-15895 | 0 | 0 | 0900006483554a62 |
| PHMSA-2017-0158-0005 | PHMSA | Empire Pipeline-Drafts-Environmental Assessment and Special Permit Conditions for public comments PHMSA-2017-0158 | Empire Pipeline - ECP - Special Permit Application - Alternative MAOP -Documents | Other | Report | 2018-07-23T04:00:00Z | 2018 | 7 | 2018-07-23T04:00:00Z | 2025-06-16T20:35:19Z | 0 | 0 | 0900006483539e5d | ||
| PHMSA-2017-0158-0004 | PHMSA | Empire Pipeline-Drafts-Environmental Assessment and Special Permit Conditions for public comments PHMSA-2017-0158 | Empire Connector Pipeline - SP Alt MAOP Conditions for Public Comments | Other | Supplemental Comment | 2018-07-18T04:00:00Z | 2018 | 7 | 2018-07-18T04:00:00Z | 2025-11-08T10:42:33Z | 1 | 0 | 090000648351b822 | ||
| PHMSA-2017-0158-0003 | PHMSA | Empire Pipeline-Drafts-Environmental Assessment and Special Permit Conditions for public comments PHMSA-2017-0158 | Empire Pipeline - Supplemental Information | Supporting & Related Material | Supplement | 2018-06-20T04:00:00Z | 2018 | 6 | 2024-11-07T01:31:47Z | 0 | 0 | 0900006483433c59 | |||
| PHMSA-2017-0158-0002 | PHMSA | Empire Pipeline-Drafts-Environmental Assessment and Special Permit Conditions for public comments PHMSA-2017-0158 | Empire Pipeline Alternatie MAOP Compliance Report for ECP | Other | Report | 2018-01-02T05:00:00Z | 2018 | 1 | 2018-01-02T05:00:00Z | 2025-06-16T20:36:08Z | 0 | 0 | 0900006482d8ddd8 |
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;