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-2019-0635" and posted_year = 2019 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-2019-0635-0006 | EPA | None EPA-R10-OAR-2019-0635 | 102_supporting material_WSR 18 17 111. | Supporting & Related Material | 2019-12-04T05:00:00Z | 2019 | 12 | 2019-12-05T05:13:30Z | 0 | 0 | 09000064841216c6 | ||||
| EPA-R10-OAR-2019-0635-0001 | EPA | None EPA-R10-OAR-2019-0635 | Air Quality State ImplementationPlans; Approvals and Promulgations: Washington; Revised Public Notice Provisions and other Miscellaneous Revisions | Proposed Rule | 2019-12-04T05:00:00Z | 2019 | 12 | 2019-12-04T05:00:00Z | 2020-01-04T04:59:59Z | 2019-12-04T17:28:58Z | 2019-26147 | 0 | 0 | 09000064841e26af | |
| EPA-R10-OAR-2019-0635-0008 | EPA | None EPA-R10-OAR-2019-0635 | 200_Review of submitted regulatory changes | Supporting & Related Material | 2019-12-04T05:00:00Z | 2019 | 12 | 2019-12-05T05:12:48Z | 0 | 0 | 0900006484121b10 | ||||
| EPA-R10-OAR-2019-0635-0007 | EPA | None EPA-R10-OAR-2019-0635 | 103_supporting material_WSR 18 22 006 | Supporting & Related Material | 2019-12-04T05:00:00Z | 2019 | 12 | 2019-12-05T05:13:08Z | 0 | 0 | 09000064841216c7 | ||||
| EPA-R10-OAR-2019-0635-0004 | EPA | None EPA-R10-OAR-2019-0635 | 003_state submittal_AdoptionOrder_SIP_NonSSM | Supporting & Related Material | 2019-12-04T05:00:00Z | 2019 | 12 | 2019-12-05T05:14:22Z | 0 | 0 | 09000064841216c4 | ||||
| EPA-R10-OAR-2019-0635-0002 | EPA | None EPA-R10-OAR-2019-0635 | 001_state submittal_SubmittalLetter_SIP_XSSM | Supporting & Related Material | 2019-12-04T05:00:00Z | 2019 | 12 | 2019-12-05T05:11:35Z | 0 | 0 | 09000064841216c2 | ||||
| EPA-R10-OAR-2019-0635-0009 | EPA | None EPA-R10-OAR-2019-0635 | 201_WA 400 rule Tribal Consultation letter_3_19_18 letter | Supporting & Related Material | 2019-12-04T05:00:00Z | 2019 | 12 | 2019-12-05T05:12:21Z | 0 | 0 | 09000064841221a1 | ||||
| EPA-R10-OAR-2019-0635-0003 | EPA | None EPA-R10-OAR-2019-0635 | 002_state submittal_SIP_XSSM_400_405_410_415 | Supporting & Related Material | 2019-12-04T05:00:00Z | 2019 | 12 | 2019-12-05T05:11:55Z | 0 | 0 | 09000064841216c3 | ||||
| EPA-R10-OAR-2019-0635-0005 | EPA | None EPA-R10-OAR-2019-0635 | 101_supporting material__e notice rulemaking_2016-24911 | Supporting & Related Material | 2019-12-04T05:00:00Z | 2019 | 12 | 2019-12-05T05:13:55Z | 0 | 0 | 09000064841216c5 |
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;