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-0625" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0625-0011 | EPA | None EPA-R09-OAR-2025-0625 | Air Quality State Implementation Plans; Approvals and Promulgations: California; Mojave Desert Air Quality Management District; New Source Review; Stationary Source Permits | Rule | 2026-03-23T04:00:00Z | 2026 | 3 | 2026-03-23T04:00:00Z | 2026-04-15T18:51:41Z | 2026-05591 | 0 | 0 | 09000064b922c383 | ||
| EPA-R09-OAR-2025-0625-0006 | EPA | None EPA-R09-OAR-2025-0625 | Section C - Current MDAQMD State Implementation Plan (SIP) Rules (C.1 through C.10) | Supporting & Related Material | 2025-07-24T04:00:00Z | 2025 | 7 | 2025-07-24T18:54:02Z | 0 | 0 | 09000064b8e57f33 | ||||
| EPA-R09-OAR-2025-0625-0001 | EPA | None EPA-R09-OAR-2025-0625 | Air Quality State Implementation Plans; Approvals and Promulgations: California; Interim Final Determination To Stay or Defer Sanctions; Mojave Desert Air Quality Management District | Rule | 2025-07-24T04:00:00Z | 2025 | 7 | 2025-07-24T04:00:00Z | 2025-08-26T03:59:59Z | 2025-08-06T09:00:21Z | 2025-13905 | 0 | 0 | 09000064b8e9c6cc | |
| EPA-R09-OAR-2025-0625-0008 | EPA | None EPA-R09-OAR-2025-0625 | Section E - Referenced Federal Register Notices (E.1 through E.9) | Supporting & Related Material | 2025-07-24T04:00:00Z | 2025 | 7 | 2025-07-24T18:54:09Z | 0 | 0 | 09000064b8e59b98 | ||||
| EPA-R09-OAR-2025-0625-0003 | EPA | None EPA-R09-OAR-2025-0625 | Docket Index for Mojave Desert AQMD New Source Review State Implementation Plan Revision Notice of Proposed Rulemaking (July 24, 2025) | Supporting & Related Material | 2025-07-24T04:00:00Z | 2025 | 7 | 2025-07-24T18:53:48Z | 0 | 0 | 09000064b8e57f30 | ||||
| EPA-R09-OAR-2025-0625-0007 | EPA | None EPA-R09-OAR-2025-0625 | Section D - Supporting Material and Other Relevant Documents (D.1 through D.19)) | Supporting & Related Material | 2025-07-24T04:00:00Z | 2025 | 7 | 2025-07-24T18:54:06Z | 0 | 0 | 09000064b8e57f34 | ||||
| EPA-R09-OAR-2025-0625-0004 | EPA | None EPA-R09-OAR-2025-0625 | Section A - EPA Rulemaking Documents (A.1 and A.2) | Supporting & Related Material | 2025-07-24T04:00:00Z | 2025 | 7 | 2025-07-24T18:53:54Z | 0 | 0 | 09000064b8e57f31 | ||||
| EPA-R09-OAR-2025-0625-0002 | EPA | None EPA-R09-OAR-2025-0625 | Air Quality State Implementation Plans; Approvals and Promulgations: California; Mojave Desert Air Quality Management District; New Source Review; Stationary Source Permits | Proposed Rule | 2025-07-24T04:00:00Z | 2025 | 7 | 2025-07-24T04:00:00Z | 2025-08-26T03:59:59Z | 2025-08-06T09:00:21Z | 2025-13906 | 0 | 0 | 09000064b8e9c59b | |
| EPA-R09-OAR-2025-0625-0005 | EPA | None EPA-R09-OAR-2025-0625 | Section B - State Implementation Plan Revision Submittals (B.1 through B.11) | Supporting & Related Material | 2025-07-24T04:00:00Z | 2025 | 7 | 2025-07-24T18:53:57Z | 0 | 0 | 09000064b8e57f32 |
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;