documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-R09-OAR-2025-0058" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 9
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-R09-OAR-2025-0058-0009 | EPA | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns EPA-R09-OAR-2025-0058 | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns | Rule | 2026-04-16T04:00:00Z | 2026 | 4 | 2026-04-16T04:00:00Z | 2026-04-16T18:26:37Z | 2026-07398 | 0 | 0 | 09000064b92867b1 | ||
| EPA-R09-OAR-2025-0058-0008 | EPA | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns EPA-R09-OAR-2025-0058 | 04-09-2025 Email - EK Rule 425.3 SU_SD Emission Limitation Questions | Supporting & Related Material | 2026-03-25T04:00:00Z | 2026 | 3 | 2026-03-26T00:54:34Z | 0 | 0 | 09000064b9236d22 | ||||
| EPA-R09-OAR-2025-0058-0007 | EPA | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns EPA-R09-OAR-2025-0058 | 06-04-2025 Memorandum re Call w John Lewis | Supporting & Related Material | 2026-02-04T05:00:00Z | 2026 | 2 | 2026-02-04T21:18:10Z | 0 | 0 | 09000064b918e553 | ||||
| EPA-R09-OAR-2025-0058-0003 | EPA | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns EPA-R09-OAR-2025-0058 | A. State Implementation Plan Submittal Documents | Supporting & Related Material | 2025-06-04T04:00:00Z | 2025 | 6 | 2025-06-05T04:10:02Z | 0 | 0 | 09000064b8d498ac | ||||
| EPA-R09-OAR-2025-0058-0004 | EPA | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns EPA-R09-OAR-2025-0058 | B. Supporting Material and Other Documents | Supporting & Related Material | 2025-06-04T04:00:00Z | 2025 | 6 | 2025-06-05T04:10:02Z | 0 | 0 | 09000064b8d498b0 | ||||
| EPA-R09-OAR-2025-0058-0006 | EPA | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns EPA-R09-OAR-2025-0058 | Docket Index NPRM EPA-R09-OAR-2025-0058 | Supporting & Related Material | 2025-06-04T04:00:00Z | 2025 | 6 | 2025-06-05T04:10:02Z | 0 | 0 | 09000064b8d4902f | ||||
| EPA-R09-OAR-2025-0058-0005 | EPA | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns EPA-R09-OAR-2025-0058 | C. EPA Guidance Documents, Policies, and Rulemakings | Supporting & Related Material | 2025-06-04T04:00:00Z | 2025 | 6 | 2025-06-05T04:10:02Z | 0 | 0 | 09000064b8d4a556 | ||||
| EPA-R09-OAR-2025-0058-0001 | EPA | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns EPA-R09-OAR-2025-0058 | Air Quality State Implementation Plans; Approvals and Promulgations: California; Eastern Kern Air Pollution Control District; Portland Cement Kilns | Proposed Rule | 2025-06-04T00:00:00Z | 2025 | 6 | 2025-06-04T00:00:00Z | 2025-07-08T03:59:59Z | 2025-06-04T20:30:54Z | 2025-10036 | 0 | 0 | 09000064b8dd7ac8 | |
| EPA-R09-OAR-2025-0058-0002 | EPA | Air Plan Approval; California; Eastern Kern Air Pollution Control District; Portland Cement Kilns EPA-R09-OAR-2025-0058 | Air Quality State Implementation Plans; Approvals and Promulgations: California; Eastern Kern Air Pollution Control District; Portland Cement Kilns; Determination To Defer Sanctions | Rule | 2025-06-04T00:00:00Z | 2025 | 6 | 2025-06-04T00:00:00Z | 2025-07-08T03:59:59Z | 2025-06-04T20:31:50Z | 2025-10037 | 0 | 0 | 09000064b8dd7b0d |
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;