documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "PHMSA-2006-25802" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
agency_id 1
- PHMSA 9
| 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-2006-25802-0009 | PHMSA | Petition for Waiver; CenterPoint Energy PHMSA-2006-25802 | CenterPoint Energy - Resubmission/Correction - 2010 Annual Report | Other | Report | 2010-10-19T04:00:00Z | 2010 | 10 | 2010-10-19T04:00:00Z | 2013-08-11T01:37:39Z | 0 | 0 | 0900006480b7260e | ||
| PHMSA-2006-25802-0008 | PHMSA | Petition for Waiver; CenterPoint Energy PHMSA-2006-25802 | Attachment | Other | Other | 2008-10-16T04:00:00Z | 2008 | 10 | 2008-10-16T04:00:00Z | 2013-08-11T02:57:01Z | 0 | 0 | 0900006480760b7a | ||
| PHMSA-2006-25802-0007 | PHMSA | Petition for Waiver; CenterPoint Energy PHMSA-2006-25802 | Attachment | Other | Special Permit | 2008-09-04T04:00:00Z | 2008 | 9 | 2008-09-04T04:00:00Z | 2013-07-27T22:23:58Z | 0 | 0 | 09000064806eef21 | ||
| PHMSA-2006-25802-0006 | PHMSA | Petition for Waiver; CenterPoint Energy PHMSA-2006-25802 | Attache Modification Letter | Other | Letter(s) | 2008-09-04T04:00:00Z | 2008 | 9 | 2008-09-04T04:00:00Z | 2013-07-27T22:23:58Z | 0 | 0 | 09000064806eef12 | ||
| PHMSA-2006-25802-0005 | PHMSA | Petition for Waiver; CenterPoint Energy PHMSA-2006-25802 | Notice of Operation under Special Permit Conditions | Notice | Notice | 2008-03-21T04:00:00Z | 2008 | 3 | 2008-03-21T04:00:00Z | 2013-07-27T20:37:59Z | 0 | 0 | 09000064803ff783 | ||
| PHMSA-2006-25802-0004 | PHMSA | Petition for Waiver; CenterPoint Energy PHMSA-2006-25802 | Pipeline Safety: Special Permits Granted | Rule | Federal Register Publication | 2008-01-29T05:00:00Z | 2008 | 1 | 2008-01-29T05:00:00Z | 2025-06-17T18:13:26Z | E8-01502 | 0 | 0 | 09000064803a426a | |
| PHMSA-2006-25802-0003 | PHMSA | Petition for Waiver; CenterPoint Energy PHMSA-2006-25802 | CenterPoint Energy - Letter of Response - 17 Nov 2006 | Other | Letter(s) | 2007-05-23T04:00:00Z | 2007 | 5 | 2007-05-23T04:00:00Z | 2007-05-24T03:59:59Z | 2025-06-17T18:13:09Z | 0 | 0 | 09000064802b1070 | |
| PHMSA-2006-25802-0002 | PHMSA | Petition for Waiver; CenterPoint Energy PHMSA-2006-25802 | U.S. DOT/PHMSA - Notice | Rule | Federal Register Publication | 2007-02-08T05:00:00Z | 2007 | 2 | 2007-02-08T05:00:00Z | 2007-02-09T04:59:59Z | 2025-06-17T18:12:54Z | 0 | 0 | 0900006480384682 | |
| PHMSA-2006-25802-0001 | PHMSA | Petition for Waiver; CenterPoint Energy PHMSA-2006-25802 | CenterPoint Energy Gas Transmission Company - Petition for Waiver | Other | Petition(s) | 2006-09-07T04:00:00Z | 2006 | 9 | 2006-09-07T04:00:00Z | 2006-09-08T03:59:59Z | 2025-06-17T18:12:39Z | 0 | 0 | 09000064802b106f |
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;