documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-R10-OAR-2021-0751" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2021-0751-0003 | EPA | None EPA-R10-OAR-2021-0751 | 002_SIP Revision_Appendices A through E_supporting documents | Supporting & Related Material | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-08T02:01:15Z | 0 | 0 | 0900006484dc71bd | ||||
| EPA-R10-OAR-2021-0751-0009 | EPA | None EPA-R10-OAR-2021-0751 | 102_WSR 20_14_122 | Supporting & Related Material | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-08T02:01:58Z | 0 | 0 | 0900006484eaa775 | ||||
| EPA-R10-OAR-2021-0751-0004 | EPA | None EPA-R10-OAR-2021-0751 | 003_SIP Revision_Appendix F Public Notification | Supporting & Related Material | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-08T02:01:06Z | 0 | 0 | 0900006484dc71bf | ||||
| EPA-R10-OAR-2021-0751-0005 | EPA | None EPA-R10-OAR-2021-0751 | 004_SIP Revision_Appendix G Public Comments | Supporting & Related Material | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-08T02:00:57Z | 0 | 0 | 0900006484dc9d13 | ||||
| EPA-R10-OAR-2021-0751-0001 | EPA | None EPA-R10-OAR-2021-0751 | Air Quality State Implementation Plans; Approvals and Promulgations: Washington; Yakima Regional Clean Air Agency, General Air Quality Regulations | Proposed Rule | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-07T05:00:00Z | 2022-01-07T04:59:59Z | 2022-01-07T02:00:12Z | 2021-26437 | 0 | 0 | 0900006484ea7be2 | |
| EPA-R10-OAR-2021-0751-0006 | EPA | None EPA-R10-OAR-2021-0751 | 005_SIP Revision_Appendix H SIP adoption order and transmittal letter | Supporting & Related Material | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-08T02:00:49Z | 0 | 0 | 0900006484dc9d15 | ||||
| EPA-R10-OAR-2021-0751-0002 | EPA | None EPA-R10-OAR-2021-0751 | 001_SIP Revision_Including Revised Yakima Regional Clean Air Agency Regulation 1 | Supporting & Related Material | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-08T02:01:24Z | 0 | 0 | 0900006484dc71bb | ||||
| EPA-R10-OAR-2021-0751-0007 | EPA | None EPA-R10-OAR-2021-0751 | 400_Yakama tribal consultation letter | Supporting & Related Material | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-08T02:01:41Z | 0 | 0 | 0900006484dc9d17 | ||||
| EPA-R10-OAR-2021-0751-0010 | EPA | None EPA-R10-OAR-2021-0751 | 103_wsr_20-21-016 | Supporting & Related Material | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-08T02:01:33Z | 0 | 0 | 0900006484eaa844 | ||||
| EPA-R10-OAR-2021-0751-0008 | EPA | None EPA-R10-OAR-2021-0751 | 101_Clean copy YRCAA Regulation 1- 2020 adopted 8Oct2020 | Supporting & Related Material | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-08T02:01:50Z | 0 | 0 | 0900006484eaa2d6 |
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;