documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "PHMSA-2007-0039" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2007-0039-0024 | PHMSA | Gulf South Pipeline Company Special Permit Request 13 SEPT 2007 PHMSA-2007-0039 | Gulf South Pipeline Company, LP (Gulf South) - Monthly Report | Other | Report | 2018-08-30T04:00:00Z | 2018 | 8 | 2018-08-30T04:00:00Z | 2018-08-30T15:04:08Z | 0 | 0 | 0900006483670f38 | ||
| PHMSA-2007-0039-0023 | PHMSA | Gulf South Pipeline Company Special Permit Request 13 SEPT 2007 PHMSA-2007-0039 | Gulf South Pipeline Company Special Permit | Supporting & Related Material | Supplement | 2018-06-01T04:00:00Z | 2018 | 6 | 2018-06-01T19:14:22Z | 0 | 0 | 090000648331ffb8 | |||
| PHMSA-2007-0039-0016 | PHMSA | Gulf South Pipeline Company Special Permit Request 13 SEPT 2007 PHMSA-2007-0039 | Pipeline Safety: Request for Special Permit; Gulf South/Boardwalk Pipeline Partners | Notice | Notice of Intent | 2018-03-26T04:00:00Z | 2018 | 3 | 2018-03-26T04:00:00Z | 2018-04-26T03:59:59Z | 2025-06-18T19:47:39Z | 2018-05982 | 0 | 0 | 090000648304da9d |
| PHMSA-2007-0039-0015 | PHMSA | Gulf South Pipeline Company Special Permit Request 13 SEPT 2007 PHMSA-2007-0039 | Gulf South Pipeline Company - Draft Environmental Assessment and Findings of No Significant Importance | Supporting & Related Material | Supplement | 2018-02-28T05:00:00Z | 2018 | 2 | 2018-02-28T17:03:02Z | 0 | 0 | 0900006482f6bd00 | |||
| PHMSA-2007-0039-0014 | PHMSA | Gulf South Pipeline Company Special Permit Request 13 SEPT 2007 PHMSA-2007-0039 | Gulf South A Boardwalk Pipeline - Application Cover Letter for Special Permit Due to Class 1 to 3 Change | Other | Letter(s) | 2018-02-01T05:00:00Z | 2018 | 2 | 2018-02-01T05:00:00Z | 2018-02-01T17:30:25Z | 0 | 0 | 0900006482e7f860 | ||
| PHMSA-2007-0039-0013 | PHMSA | Gulf South Pipeline Company Special Permit Request 13 SEPT 2007 PHMSA-2007-0039 | U.S.DOT/PHMSA - Revised Documents for Extension to original Special Permit TPL 880 30inch Index in Mobile, Alabama | Other | Petition(s) | 2018-01-02T05:00:00Z | 2018 | 1 | 2018-01-02T05:00:00Z | 2025-06-18T20:01:47Z | 0 | 0 | 0900006482d8a7c9 |
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;