documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "PHMSA-2016-0023" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, open_for_comment, posted_date (date), comment_start_date (date), last_modified (date)
document_type 2
agency_id 1
- PHMSA 8
| 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-2016-0023-0010 | PHMSA | Pipeline Safety: Underground Storage Facilities for Natural Gas PHMSA-2016-0023 | Improving PHMSA’s New Rules 01.20.2017 | Supporting & Related Material | Supplement | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T21:39:36Z | 0 | 0 | 0900006482488d14 | |||
| PHMSA-2016-0023-0009 | PHMSA | Pipeline Safety: Underground Storage Facilities for Natural Gas PHMSA-2016-0023 | INGAA Storage Petition for Rulemaking | Supporting & Related Material | Supplement | 2016-09-23T04:00:00Z | 2016 | 9 | 2016-09-23T15:16:09Z | 0 | 0 | 090000648225c3bd | |||
| PHMSA-2016-0023-0006 | PHMSA | Pipeline Safety: Underground Storage Facilities for Natural Gas PHMSA-2016-0023 | Underground Storage Call with EDF Summary | Supporting & Related Material | Supplement | 2016-09-19T04:00:00Z | 2016 | 9 | 2016-09-19T19:33:50Z | 0 | 0 | 0900006482229c29 | |||
| PHMSA-2016-0023-0007 | PHMSA | Pipeline Safety: Underground Storage Facilities for Natural Gas PHMSA-2016-0023 | EDF Ideas on Jurisdictional Issues Related to PHMSA Gas Storage IFR | Supporting & Related Material | Supplement | 2016-09-19T04:00:00Z | 2016 | 9 | 2016-09-19T19:41:02Z | 0 | 0 | 090000648222a0ec | |||
| PHMSA-2016-0023-0005 | PHMSA | Pipeline Safety: Underground Storage Facilities for Natural Gas PHMSA-2016-0023 | Kinder Morgan Meeting with the Administrator - Summary/Presentation Materials | Supporting & Related Material | Supplement | 2016-09-12T04:00:00Z | 2016 | 9 | 2016-09-12T20:25:56Z | 0 | 0 | 09000064821fc417 | |||
| PHMSA-2016-0023-0004 | PHMSA | Pipeline Safety: Underground Storage Facilities for Natural Gas PHMSA-2016-0023 | Underground Storage Stakeholder Meeting Summary EDF 07-06-16 v3 | Supporting & Related Material | Meeting Summary | 2016-08-05T04:00:00Z | 2016 | 8 | 2016-08-05T20:43:54Z | 0 | 0 | 0900006482159aca | |||
| PHMSA-2016-0023-0003 | PHMSA | Pipeline Safety: Underground Storage Facilities for Natural Gas PHMSA-2016-0023 | EDF Stakeholder Meeting Handout 07-06-16 | Supporting & Related Material | Meeting Materials | 2016-08-05T04:00:00Z | 2016 | 8 | 2016-08-05T19:38:04Z | 0 | 0 | 090000648215981e | |||
| PHMSA-2016-0023-0001 | PHMSA | Pipeline Safety: Underground Storage Facilities for Natural Gas PHMSA-2016-0023 | Meetings: Pipeline Safety: Public Workshop on Underground Natural Gas Storage Safety | Notice | Meeting | 2016-06-24T04:00:00Z | 2016 | 6 | 2016-06-24T04:00:00Z | 2024-11-11T21:27:45Z | 2016-14953 | 1 | 0 | 09000064820673bd |
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;