documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "PHMSA-2009-0377" 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-2009-0377-0007 | PHMSA | Pipeline Safety: Request for Modification of Condition 35 (Coating Assessment) Special Permit Docket No. PHMSA-2007-29078 PHMSA-2009-0377 | Kern River Gas Transmission Company - Renewal Application for MAOP Special Permit - Proposed Modifications of Condition 35 | Other | Application | 2019-12-10T05:00:00Z | 2019 | 12 | 2019-12-10T05:00:00Z | 2025-06-16T22:25:38Z | 0 | 0 | 09000064841fcb47 | ||
| PHMSA-2009-0377-0006 | PHMSA | Pipeline Safety: Request for Modification of Condition 35 (Coating Assessment) Special Permit Docket No. PHMSA-2007-29078 PHMSA-2009-0377 | Kern River Gas Transmission Company - Special Permit - Modified Condition 35(f) re: Engineer Service Requests | Other | Other | 2010-07-15T04:00:00Z | 2010 | 7 | 2010-07-15T04:00:00Z | 2025-06-16T22:25:15Z | 0 | 0 | 0900006480b1ac00 | ||
| PHMSA-2009-0377-0004 | PHMSA | Pipeline Safety: Request for Modification of Condition 35 (Coating Assessment) Special Permit Docket No. PHMSA-2007-29078 PHMSA-2009-0377 | U.S. DOT/PHMSA - Memorandum re: Kern River's Request to Modify Special Permit Condition 35 | Other | Memo, Action Memo or Letter | 2010-03-10T05:00:00Z | 2010 | 3 | 2010-03-10T05:00:00Z | 2013-08-11T01:33:02Z | 0 | 0 | 0900006480ab908c | ||
| PHMSA-2009-0377-0005 | PHMSA | Pipeline Safety: Request for Modification of Condition 35 (Coating Assessment) Special Permit Docket No. PHMSA-2007-29078 PHMSA-2009-0377 | Kern River Gas Transmission Company - Special Permit Condition 35 Document Log - Master Index | Other | Additional Information | 2010-03-10T05:00:00Z | 2010 | 3 | 2010-03-10T05:00:00Z | 2025-06-16T22:24:53Z | 0 | 0 | 0900006480ab908d | ||
| PHMSA-2009-0377-0003 | PHMSA | Pipeline Safety: Request for Modification of Condition 35 (Coating Assessment) Special Permit Docket No. PHMSA-2007-29078 PHMSA-2009-0377 | Kern River Gas Transmission Company - Response/Rebuttal Report | Other | Response(s) | 2010-02-19T05:00:00Z | 2010 | 2 | 2010-02-19T05:00:00Z | 2013-08-11T04:38:04Z | 0 | 0 | 0900006480aa78b5 | ||
| PHMSA-2009-0377-0002 | PHMSA | Pipeline Safety: Request for Modification of Condition 35 (Coating Assessment) Special Permit Docket No. PHMSA-2007-29078 PHMSA-2009-0377 | Attached (4) | Other | Other | 2010-02-16T05:00:00Z | 2010 | 2 | 2010-02-16T05:00:00Z | 2013-08-11T01:32:29Z | 0 | 0 | 0900006480a9033b |
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;