documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-R10-OAR-2023-0342" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-R10-OAR-2023-0342-0009 | EPA | None EPA-R10-OAR-2023-0342 | Air Quality State Implementation Plans; Approvals and Promulgations: Washington; Southwest Clean Air Agency, General Air Quality Regulations | Rule | 2023-09-29T04:00:00Z | 2023 | 9 | 2023-09-29T04:00:00Z | 2023-09-29T16:00:27Z | 2023-21267 | 0 | 0 | 090000648600f498 | ||
| EPA-R10-OAR-2023-0342-0003 | EPA | None EPA-R10-OAR-2023-0342 | 101_SWCAA 400 (non-SSM) - SIP Revision | Supporting & Related Material | 2023-07-31T04:00:00Z | 2023 | 7 | 2023-08-01T07:49:25Z | 0 | 0 | 0900006485d8ebee | ||||
| EPA-R10-OAR-2023-0342-0004 | EPA | None EPA-R10-OAR-2023-0342 | 200_reg400 | Supporting & Related Material | 2023-07-31T04:00:00Z | 2023 | 7 | 2023-08-01T07:49:40Z | 0 | 0 | 0900006485d8ebef | ||||
| EPA-R10-OAR-2023-0342-0008 | EPA | None EPA-R10-OAR-2023-0342 | 300_EPA-HQ-OAR-2021-0420-0011_VOC definition | Supporting & Related Material | 2023-07-31T04:00:00Z | 2023 | 7 | 2023-08-01T07:49:57Z | 0 | 0 | 0900006485d8ecf1 | ||||
| EPA-R10-OAR-2023-0342-0002 | EPA | None EPA-R10-OAR-2023-0342 | 100_SWCAA 400 (non-SSM) - Transmittal Letter | Supporting & Related Material | 2023-07-31T04:00:00Z | 2023 | 7 | 2023-08-01T07:49:11Z | 0 | 0 | 0900006485d8ebec | ||||
| EPA-R10-OAR-2023-0342-0005 | EPA | None EPA-R10-OAR-2023-0342 | 201_wsr_17-11-078 | Supporting & Related Material | 2023-07-31T04:00:00Z | 2023 | 7 | 2023-08-01T07:50:41Z | 0 | 0 | 0900006485d8ebf1 | ||||
| EPA-R10-OAR-2023-0342-0006 | EPA | None EPA-R10-OAR-2023-0342 | 202_wsr_20-06-003 | Supporting & Related Material | 2023-07-31T04:00:00Z | 2023 | 7 | 2023-08-01T07:50:11Z | 0 | 0 | 0900006485d8ebf2 | ||||
| EPA-R10-OAR-2023-0342-0001 | EPA | None EPA-R10-OAR-2023-0342 | Air Quality State Implementation Plans; Approvals and Promulgations: Washington; Southwest Clean Air Agency, General Air Quality Regulations | Proposed Rule | 2023-07-31T04:00:00Z | 2023 | 7 | 2023-07-31T04:00:00Z | 2023-08-31T03:59:59Z | 2023-07-31T17:07:38Z | 2023-15750 | 0 | 0 | 0900006485d88c31 | |
| EPA-R10-OAR-2023-0342-0007 | EPA | None EPA-R10-OAR-2023-0342 | 203_wsr_21-17-054 | Supporting & Related Material | 2023-07-31T04:00:00Z | 2023 | 7 | 2023-08-01T07:50:26Z | 0 | 0 | 0900006485d8ecf0 |
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;