documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "PHMSA-2007-27607" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-27607-0016 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | Center Point Energy - 2010 Southeast Supply Heading Special Permit Annual Report | Other | Report | 2010-10-19T04:00:00Z | 2010 | 10 | 2010-10-19T04:00:00Z | 2013-08-11T03:11:18Z | 0 | 0 | 0900006480b72613 | ||
| PHMSA-2007-27607-0015 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | Special Permit Attached | Other | Special Permit | 2008-07-25T04:00:00Z | 2008 | 7 | 2008-07-25T04:00:00Z | 2013-08-11T04:27:02Z | 0 | 0 | 090000648068cfec | ||
| PHMSA-2007-27607-0013 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | Attached Decision | Other | Letter(s) | 2008-07-18T04:00:00Z | 2008 | 7 | 2008-07-18T04:00:00Z | 2013-07-27T22:18:59Z | 0 | 0 | 090000648068518f | ||
| PHMSA-2007-27607-0014 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | Attached SP Analysis & Findings | Other | Special Permit | 2008-07-18T04:00:00Z | 2008 | 7 | 2013-07-27T22:18:59Z | 0 | 0 | 09000064806851d3 | |||
| PHMSA-2007-27607-0012 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | Joe H. Little, Jr. - Letter | Other | Letter(s) | 2007-12-11T05:00:00Z | 2007 | 12 | 2007-12-11T05:00:00Z | 2025-06-18T19:42:44Z | 0 | 0 | 0900006480375dc9 | ||
| PHMSA-2007-27607-0007 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | McGowin Properties, Ltd.; Lillian C. McGowin Timber Corporation - Request for Relocation of Route | Other | Request | 2007-05-31T04:00:00Z | 2007 | 5 | 2007-05-31T04:00:00Z | 2007-06-01T03:59:59Z | 2025-06-18T19:41:46Z | 0 | 0 | 09000064802b80c0 | |
| PHMSA-2007-27607-0005 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | Mobile County Commission - Resolution (Alabama) | Other | Other | 2007-05-17T04:00:00Z | 2007 | 5 | 2007-05-17T04:00:00Z | 2007-05-18T03:59:59Z | 2025-06-18T19:42:04Z | 0 | 0 | 09000064802b80be | |
| PHMSA-2007-27607-0004 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | Derek L. Rainwaters - Letter in Opposition of Southeast Supply Header, LLC's Request for Waiver | Other | Letter(s) in Opposition | 2007-05-14T04:00:00Z | 2007 | 5 | 2007-05-14T04:00:00Z | 2007-05-15T03:59:59Z | 2025-06-18T19:42:23Z | 0 | 0 | 09000064802b80bd | |
| PHMSA-2007-27607-0001 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | Southeast Supply Header - Waiver Request Letter | Other | Request | 2007-03-13T04:00:00Z | 2007 | 3 | 2007-03-13T04:00:00Z | 2007-03-14T03:59:59Z | 2024-11-08T04:12:39Z | 1 | 0 | 09000064802b80b8 | |
| PHMSA-2007-27607-0002 | PHMSA | Southeast Supply Header Waiver Request 02 Feb 2007 PHMSA-2007-27607 | Southeast Supply Header - Waiver Request 22 Feb 2007 | Other | Petition(s) | 2007-03-13T04:00:00Z | 2007 | 3 | 2007-03-13T04:00:00Z | 2007-03-14T03:59:59Z | 2024-11-08T04:12:39Z | 1 | 0 | 09000064802b80bb |
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;