documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "EPA" and docket_id = "EPA-R10-OAR-2019-0568" 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)
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-R10-OAR-2019-0568-0012 | EPA | None EPA-R10-OAR-2019-0568 | Air Quality State Implementation Plans; Approvals and Promulgations: Washington; Update to the Adoption by Reference, Energy Facility Site Evaluation Council | Rule | 2020-01-24T05:00:00Z | 2020 | 1 | 2020-01-24T05:00:00Z | 2020-01-27T16:47:27Z | 2020-00549 | 0 | 0 | 09000064842e7c8c | ||
| EPA-R10-OAR-2019-0568-0002 | EPA | None EPA-R10-OAR-2019-0568 | 101_state submittal_Signed Cover Letter 2010 SO2 and 2015 O3 ISIP WA State | Supporting & Related Material | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-30T02:09:59Z | 0 | 0 | 0900006483ffb32e | ||||
| EPA-R10-OAR-2019-0568-0005 | EPA | None EPA-R10-OAR-2019-0568 | 104_state submittal_EFSEC WSR 19-16-025 | Supporting & Related Material | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-30T02:07:39Z | 0 | 0 | 0900006484015dd0 | ||||
| EPA-R10-OAR-2019-0568-0003 | EPA | None EPA-R10-OAR-2019-0568 | 102_state submittal_2018 ISIP for 2015 03 and 2010 S02 NAAQS | Supporting & Related Material | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-30T02:09:03Z | 0 | 0 | 0900006483ffc53b | ||||
| EPA-R10-OAR-2019-0568-0006 | EPA | None EPA-R10-OAR-2019-0568 | 105_state submittal_2015 O3 and 2010 SO2 ISIP Appendix A Table | Supporting & Related Material | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-30T02:08:05Z | 0 | 0 | 0900006484015dd1 | ||||
| EPA-R10-OAR-2019-0568-0008 | EPA | None EPA-R10-OAR-2019-0568 | 202_supporting materials_Sterud, Bill, WA EFSEC Consultation letter 5.16.19 | Supporting & Related Material | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-30T02:09:27Z | 0 | 0 | 09000064840f1bd4 | ||||
| EPA-R10-OAR-2019-0568-0004 | EPA | None EPA-R10-OAR-2019-0568 | 103_state submittal_Signed Order | Supporting & Related Material | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-30T02:07:11Z | 0 | 0 | 0900006483ffc53c | ||||
| EPA-R10-OAR-2019-0568-0001 | EPA | None EPA-R10-OAR-2019-0568 | Air Quality State Implementation Plans; Approvals and Promulgations: Washington; Update to the Adoption by Reference, Energy Facility Site Evaluation Council | Proposed Rule | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-29T04:00:00Z | 2019-11-30T04:59:59Z | 2019-11-05T02:06:58Z | 2019-23516 | 0 | 0 | 0900006484103fc9 | |
| EPA-R10-OAR-2019-0568-0007 | EPA | None EPA-R10-OAR-2019-0568 | 201_supporting materials_Revised Public Notice Provisions and Other Changes | Supporting & Related Material | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-30T02:08:36Z | 0 | 0 | 0900006484015dd2 |
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;