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 posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, last_modified, withdrawn, 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-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-0004 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | U.S. DOT/PHMSA - Request for Operator Environmental Assessment Information | Supporting & Related Material | Supporting Documentation | 2009-12-09T05:00:00Z | 2009 | 12 | 2024-11-07T22:09:34Z | 0 | 0 | 0900006480a679da | |||
| PHMSA-2009-0407-0007 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | Operator Response to request for Additional Information | Supporting & Related Material | Supporting Documentation | 2009-12-09T05:00:00Z | 2009 | 12 | 2009-12-09T19:17:20Z | 0 | 0 | 0900006480a679dc | |||
| 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-0006 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | U.S. DOT/PHMSA - Request for Additional information | Supporting & Related Material | Supporting Documentation | 2009-12-09T05:00:00Z | 2009 | 12 | 2024-11-07T22:09:35Z | 0 | 0 | 0900006480a679db | |||
| PHMSA-2009-0407-0005 | PHMSA | Special Permit Petition from Union Oil of California (Chevron) PHMSA-2009-0407 | Union Oil Company of California - Operator Environmental Assessment Information | Supporting & Related Material | Supporting Documentation | 2009-12-09T05:00:00Z | 2009 | 12 | 2024-11-07T22:09:34Z | 0 | 0 | 0900006480a678a0 | |||
| 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;