documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "PHMSA-2006-26618" 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-26618-0014 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | Tennessee Gas Pipeline - 2013 Annual Report and Attachments | Other | Report | 2014-08-06T04:00:00Z | 2014 | 8 | 2014-08-06T04:00:00Z | 2014-08-06T14:37:18Z | 0 | 0 | 090000648180000e | ||
| PHMSA-2006-26618-0013 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | U.S.DOT/PHMSA - See Attachments | Other | Letter(s) | 2014-06-12T04:00:00Z | 2014 | 6 | 2014-06-12T04:00:00Z | 2014-06-12T19:23:47Z | 0 | 0 | 09000064817404d9 | ||
| PHMSA-2006-26618-0012 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | Tennessee Gas Pipeline Company, LLC - Withdrawal of Special Permit | Other | Withdrawal | 2014-05-29T04:00:00Z | 2014 | 5 | 2014-05-29T04:00:00Z | 2014-05-29T15:42:26Z | 0 | 0 | 0900006481718921 | ||
| PHMSA-2006-26618-0011 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | Tennessee Gas Pipeline - Annual Report | Other | Report | 2012-09-19T04:00:00Z | 2012 | 9 | 2012-09-19T04:00:00Z | 2012-09-19T20:25:40Z | 0 | 0 | 0900006481100335 | ||
| PHMSA-2006-26618-0009 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | U.S. DOT/PHMSA - Request for Special Permit | Other | Request | 2012-06-05T04:00:00Z | 2012 | 6 | 2012-06-05T04:00:00Z | 2012-06-05T19:59:58Z | 0 | 0 | 0900006481023382 | ||
| PHMSA-2006-26618-0010 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | U.S. DOT/PHMSA - Amended Special Permit | Other | Special Permit | 2012-06-05T04:00:00Z | 2012 | 6 | 2012-06-05T04:00:00Z | 2012-06-05T19:59:59Z | 0 | 0 | 0900006481023387 | ||
| PHMSA-2006-26618-0008 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | Tennessee Gas Pipeline - Final Environment Assessment | Other | Special Permit | 2011-09-09T04:00:00Z | 2011 | 9 | 2011-09-09T04:00:00Z | 2014-08-27T01:13:57Z | 0 | 0 | 0900006480f150fe | ||
| PHMSA-2006-26618-0006 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | Tennessee Gas Pipeline - Final Environment Assessment | Other | 2011-08-03T00:00:00Z | 2011 | 8 | 2013-07-28T00:00:10Z | 0 | 1 | 0900006480ed4c57 | ||||
| PHMSA-2006-26618-0004 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | U.S.DOT/PHMSA - Response | Other | Response(s) | 2010-06-07T04:00:00Z | 2010 | 6 | 2010-06-07T04:00:00Z | 2013-07-27T23:21:00Z | 0 | 0 | 0900006480afb8ee | ||
| PHMSA-2006-26618-0003 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | Waiver and Special Permit Granted on 3-06-2008 | Other | Decision | 2008-03-14T04:00:00Z | 2008 | 3 | 2008-03-14T04:00:00Z | 2013-07-27T20:37:33Z | 0 | 0 | 09000064803f476e | ||
| PHMSA-2006-26618-0001 | PHMSA | Tennessee Gas Waiver Request 28 Nov 06 PHMSA-2006-26618 | Tennessee Gas 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-18T18:11:54Z | 0 | 0 | 09000064802b1c6e |
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;