documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "PHMSA-2009-0407" 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-0407-0015 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | U.S. DOT/PHMSA - Special Permit Analysis and Findings | Other | Decision | 2010-05-05T04:00:00Z | 2010 | 5 | 2025-06-17T19:06:41Z | 0 | 0 | 0900006480ae4525 | |||
| PHMSA-2009-0407-0014 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | U.S. DOT/PHMSA - Letter of Decision | Other | Decision | 2010-05-03T04:00:00Z | 2010 | 5 | 2010-05-03T04:00:00Z | 2025-06-16T16:58:17Z | 0 | 0 | 0900006480ae44b4 | ||
| PHMSA-2009-0407-0013 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | UOCC(Chevron) Response to PHMSA 3-25-10 | Other | Response(s) | 2010-03-30T04:00:00Z | 2010 | 3 | 2010-03-30T04:00:00Z | 2013-08-11T04:38:50Z | 0 | 0 | 0900006480aca9db | ||
| PHMSA-2009-0407-0012 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | Operator Response to PHMSA dated 3-5-2010 | Other | Response(s) | 2010-03-16T04:00:00Z | 2010 | 3 | 2010-03-16T04:00:00Z | 2025-06-16T17:07:20Z | 0 | 0 | 0900006480abe867 | ||
| PHMSA-2009-0407-0008 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | U.S. DOT/PHMSA - Letter of Acknowlegement | Other | Acknowledgement Letter/Receipt | 2009-12-11T05:00:00Z | 2009 | 12 | 2009-12-11T05:00:00Z | 2025-06-16T17:06:56Z | 0 | 0 | 0900006480a68fe8 | ||
| PHMSA-2009-0407-0001 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | Special Permit Petition from Union Oil of California (Chevron) | Other | 2009-12-09T05:00:00Z | 2009 | 12 | 2025-06-17T19:05:30Z | 0 | 1 | 0900006480a6789e | ||||
| PHMSA-2009-0407-0002 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | Union Oil Company of California (Chevron) - Request for Operator Environmental Assessment Information | Other | 2009-12-09T05:00:00Z | 2009 | 12 | 2025-06-17T19:05:45Z | 0 | 1 | 0900006480a6789f | ||||
| PHMSA-2009-0407-0003 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | Special Permit Petition from Union Oil of California (Chevron) | Other | Application | 2009-12-09T05:00:00Z | 2009 | 12 | 2009-12-09T05:00:00Z | 2025-06-16T17:07:39Z | 0 | 0 | 0900006480a679d9 |
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;