documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "EPA" and docket_id = "EPA-R10-OAR-2021-0752" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| EPA-R10-OAR-2021-0752-0008 | EPA | None EPA-R10-OAR-2021-0752 | Air Quality State Implementation Plans; Approvals and Promulgations: WA; Yakima County Outdoor and Agricultural Burning Rule Revisions | Rule | 2023-09-28T04:00:00Z | 2023 | 9 | 2023-09-28T04:00:00Z | 2023-09-28T17:22:13Z | 2023-21255 | 0 | 0 | 0900006486006747 | ||
| EPA-R10-OAR-2021-0752-0006 | EPA | None EPA-R10-OAR-2021-0752 | 005_SIP Revision_Appendix H SIP adoption order and transmittal letter | Supporting & Related Material | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-27T01:18:44Z | 0 | 0 | 0900006484dc9d16 | ||||
| EPA-R10-OAR-2021-0752-0003 | EPA | None EPA-R10-OAR-2021-0752 | 002_SIP Revision_Appendices A through E_supporting documents | Supporting & Related Material | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-27T01:19:22Z | 0 | 0 | 0900006484dc71be | ||||
| EPA-R10-OAR-2021-0752-0004 | EPA | None EPA-R10-OAR-2021-0752 | 003_SIP Revision_Appendix F Public Notification | Supporting & Related Material | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-27T01:18:30Z | 0 | 0 | 0900006484dc9d12 | ||||
| EPA-R10-OAR-2021-0752-0007 | EPA | None EPA-R10-OAR-2021-0752 | 400_Yakama tribal consultation letter | Supporting & Related Material | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-27T01:19:09Z | 0 | 0 | 0900006484dc9d18 | ||||
| EPA-R10-OAR-2021-0752-0001 | EPA | None EPA-R10-OAR-2021-0752 | EPA_FRDOC_0001-29839 | Proposed Rule | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-26T04:00:00Z | 2023-07-27T01:19:35Z | 0 | 0 | 0900006485d5144a | |||
| EPA-R10-OAR-2021-0752-0002 | EPA | None EPA-R10-OAR-2021-0752 | 001_SIP Revision_Including Revised Yakima Regional Clean Air Agency Regulation 1 | Supporting & Related Material | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-27T01:18:17Z | 0 | 0 | 0900006484dc71bc | ||||
| EPA-R10-OAR-2021-0752-0005 | EPA | None EPA-R10-OAR-2021-0752 | 004_SIP Revision_Appendix G Public Comments | Supporting & Related Material | 2023-07-26T04:00:00Z | 2023 | 7 | 2023-07-27T01:18:57Z | 0 | 0 | 0900006484dc9d14 |
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;