documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "PHMSA-2009-0407" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_date (date), comment_start_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-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-0011 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | Notice of Request for Special Permit | Supporting & Related Material | Supporting Documentation | 2010-03-10T05:00:00Z | 2010 | 3 | 2010-03-10T15:28:33Z | 0 | 0 | 0900006480ab908f | |||
| PHMSA-2009-0407-0009 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | Draft Environmental Assessment | Supporting & Related Material | Environmental Assessment | 2010-01-13T05:00:00Z | 2010 | 1 | 2010-01-13T20:17:03Z | 0 | 0 | 0900006480a7cd34 |
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;