documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "PHMSA-2007-27122" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Other 7
- Notice 1
- Rule 1
- Supporting & Related Material 1
agency_id 1
- PHMSA 10
| 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-2007-27122-0010 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | Texas Eastern Transmission Annual Report 2014 | Other | Report | 2015-01-05T05:00:00Z | 2015 | 1 | 2015-01-05T05:00:00Z | 2015-01-05T15:43:02Z | 0 | 0 | 090000648198d01c | ||
| PHMSA-2007-27122-0009 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | Texas Eastern Transmission Special Permit - Annual Reports for 2011 and 2012 | Other | Report | 2014-07-30T04:00:00Z | 2014 | 7 | 2014-07-30T04:00:00Z | 2025-06-18T19:46:34Z | 0 | 0 | 09000064817ed543 | ||
| PHMSA-2007-27122-0008 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | Spectra Energy | Other | Report | 2014-07-30T04:00:00Z | 2014 | 7 | 2014-07-30T04:00:00Z | 2014-07-30T18:43:35Z | 0 | 0 | 09000064817e9ba2 | ||
| PHMSA-2007-27122-0007 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | Attached (3) | Other | Decision | 2009-09-29T04:00:00Z | 2009 | 9 | 2009-09-29T04:00:00Z | 2013-08-11T01:29:44Z | 0 | 0 | 0900006480a2be79 | ||
| PHMSA-2007-27122-0006 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | Attached | Supporting & Related Material | 2009-09-29T00:00:00Z | 2009 | 9 | 2009-09-30T20:16:58Z | 0 | 1 | 0900006480a2be27 | ||||
| PHMSA-2007-27122-0005 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | Attachment | Other | Extension of Time | 2008-10-09T04:00:00Z | 2008 | 10 | 2008-10-09T04:00:00Z | 2024-11-07T21:55:06Z | 1 | 0 | 090000648073ef0e | ||
| PHMSA-2007-27122-0004 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | Decision Attached | Other | Decision | 2008-07-30T04:00:00Z | 2008 | 7 | 2008-07-30T04:00:00Z | 2013-07-27T22:19:43Z | 0 | 0 | 090000648069d3a3 | ||
| PHMSA-2007-27122-0003 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | 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-18T19:45:20Z | 0 | 0 | 09000064802b80d2 | |
| PHMSA-2007-27122-0002 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | Duke Energy Gas Transmission - Notice of Change of Company Name to Spectra Energy Transmission | Notice | Notice of Change | 2007-01-30T05:00:00Z | 2007 | 1 | 2007-01-30T05:00:00Z | 2007-01-31T04:59:59Z | 2025-06-18T19:45:37Z | 0 | 0 | 09000064802b80d1 | |
| PHMSA-2007-27122-0001 | PHMSA | Duke Energy Waiver Request 10Oct2006 PHMSA-2007-27122 | Duke Energy Gas Transmission Corporation | Other | Application | 2007-01-29T05:00:00Z | 2007 | 1 | 2007-01-29T05:00:00Z | 2007-01-30T04:59:59Z | 2025-06-18T19:46:03Z | 0 | 0 | 09000064802b80d0 |
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;