documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-R06-OAR-2025-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 5
| 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-R06-OAR-2025-0012-0005 | EPA | None EPA-R06-OAR-2025-0012 | OK046.04 Air Quality State Implementation Plans; Approvals and Promulgations: Oklahoma; Revisions to Air Pollution Control Rules, Final rule, 3 pages | Rule | 2026-01-26T05:00:00Z | 2026 | 1 | 2026-01-26T05:00:00Z | 2026-01-30T02:42:27Z | 2026-01408 | 0 | 0 | 09000064b9180cdc | ||
| EPA-R06-OAR-2025-0012-0001 | EPA | None EPA-R06-OAR-2025-0012 | OK046.01 Air Quality State Implementation Plans; Approvals and Promulgations; Oklahoma; Revisions to Air Pollution Control Rules, Proposed, 4 pages; This proposed rule is in https://www.regulations.gov/search?filter=EPA_FRDOC_0001-32002 or by going to https://www.regulations.gov and searching for EPA_FRDOC_0001-32002 The support documents for this action are in this docket EPA-R06-OAR-2025-0012 | Supporting & Related Material | 2025-07-07T04:00:00Z | 2025 | 7 | 2025-07-08T01:10:21Z | 0 | 0 | 090000648697fc75 | ||||
| EPA-R06-OAR-2025-0012-0004 | EPA | None EPA-R06-OAR-2025-0012 | OK046.01 Air Quality State Implementation Plans; Approvals and Promulgations: Oklahoma; Revisions to Air Pollution Control Rules, Proposed rule, 4 pages | Proposed Rule | 2025-07-07T04:00:00Z | 2025 | 7 | 2025-07-07T04:00:00Z | 2025-08-07T03:59:59Z | 2025-08-06T09:00:18Z | 2025-12508 | 0 | 0 | 09000064b8e5752d | |
| EPA-R06-OAR-2025-0012-0002 | EPA | None EPA-R06-OAR-2025-0012 | OK046.02 EPA Technical Support Document | Supporting & Related Material | 2025-07-07T04:00:00Z | 2025 | 7 | 2025-07-08T03:06:52Z | 0 | 0 | 090000648697fc8d | ||||
| EPA-R06-OAR-2025-0012-0003 | EPA | None EPA-R06-OAR-2025-0012 | OK046.03 Oklahoma Revisions to OAC 252 Chapter 100, Subchapter 13. Open Burning, submitted to EPA November 25, 2024 (OK-77), 144 pages 11.3 MB f2m | Supporting & Related Material | 2025-07-07T04:00:00Z | 2025 | 7 | 2025-07-08T03:07:57Z | 0 | 0 | 09000064b8e56bd6 |
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;