documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "PHMSA-2006-26533" 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-2006-26533-0016 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | U.S.DOT/PHMSA - Decision | Other | Decision | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T05:00:00Z | 2013-02-25T16:04:34Z | 0 | 0 | 09000064811fd431 | ||
| PHMSA-2006-26533-0015 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | GulfSouth Pipeline - Special Permit Modification Request | Other | Request | 2013-01-15T05:00:00Z | 2013 | 1 | 2013-01-15T05:00:00Z | 2013-01-15T19:48:25Z | 0 | 0 | 09000064811bdb6c | ||
| PHMSA-2006-26533-0014 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | U.S. DOT/PHMSA - Response Letter | Other | Letter(s) | 2011-04-20T04:00:00Z | 2011 | 4 | 2011-04-20T04:00:00Z | 2013-07-27T23:50:57Z | 0 | 0 | 0900006480c33539 | ||
| PHMSA-2006-26533-0012 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | Attachment (2) | Other | Other | 2011-03-16T04:00:00Z | 2011 | 3 | 2011-03-16T04:00:00Z | 2013-07-27T23:47:33Z | 0 | 0 | 0900006480c08255 | ||
| PHMSA-2006-26533-0011 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | Attached | Other | Letter(s) | 2009-12-18T05:00:00Z | 2009 | 12 | 2009-12-18T05:00:00Z | 2013-07-27T23:02:49Z | 0 | 0 | 0900006480a6cd7f | ||
| PHMSA-2006-26533-0010 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | Gulf Crossing/Boardwalk Partners - Notice - Operating Pressure Increase | Other | Other | 2009-10-14T04:00:00Z | 2009 | 10 | 2009-10-14T04:00:00Z | 2013-07-27T22:56:53Z | 0 | 0 | 0900006480a40d8d | ||
| PHMSA-2006-26533-0009 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | U.S. DOT/PHMSA - Agreement Modification | Other | Agreement | 2009-05-08T04:00:00Z | 2009 | 5 | 2009-05-08T04:00:00Z | 2013-07-27T22:44:20Z | 0 | 0 | 090000648097cd21 | ||
| PHMSA-2006-26533-0008 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | Attached | Other | Special Permit | 2009-05-07T04:00:00Z | 2009 | 5 | 2009-05-07T04:00:00Z | 2013-08-11T03:01:52Z | 0 | 0 | 090000648097a82d | ||
| PHMSA-2006-26533-0003 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | U.S. DOT/PHMSA - Grant of Special Permit | Other | Special Permit | 2007-08-24T04:00:00Z | 2007 | 8 | 2007-08-24T04:00:00Z | 2007-08-25T03:59:59Z | 2025-06-18T21:26:02Z | 0 | 0 | 09000064802b78fe | |
| PHMSA-2006-26533-0001 | PHMSA | Gulf South MAOP Waiver PHMSA-2006-26533 | Gulf South Pipeline - Petition for Waiver | Other | Petition(s) | 2006-12-15T05:00:00Z | 2006 | 12 | 2006-12-15T05:00:00Z | 2006-12-16T04:59:59Z | 2025-06-18T21:26:56Z | 0 | 0 | 09000064802b78fd |
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;