documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "EPA-R03-OAR-2017-0730" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, last_modified, 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-R03-OAR-2017-0730-0005 | EPA | None EPA-R03-OAR-2017-0730 | ACHD SO2 Completeness Ltr final | Supporting & Related Material | Letter | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:06:39Z | 0 | 0 | 090000648377747b | |||
| EPA-R03-OAR-2017-0730-0008 | EPA | None EPA-R03-OAR-2017-0730 | ACHD email on ET stack | Supporting & Related Material | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:07:47Z | 0 | 0 | 09000064837787ec | ||||
| EPA-R03-OAR-2017-0730-0002 | EPA | None EPA-R03-OAR-2017-0730 | State Submittal | Supporting & Related Material | State/Tribal Submittal | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:07:46Z | 0 | 0 | 09000064837753eb | |||
| EPA-R03-OAR-2017-0730-0009 | EPA | None EPA-R03-OAR-2017-0730 | 20140423guidance | Supporting & Related Material | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:08:13Z | 0 | 0 | 0900006483778910 | ||||
| EPA-R03-OAR-2017-0730-0007 | EPA | None EPA-R03-OAR-2017-0730 | ACHD_EI_TSD_FINAL | Supporting & Related Material | Technical Support Document | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:07:43Z | 0 | 0 | 09000064837780cf | |||
| EPA-R03-OAR-2017-0730-0011 | EPA | None EPA-R03-OAR-2017-0730 | Modeling and Inventory Information | Supporting & Related Material | Memorandum | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:07:47Z | 0 | 0 | 09000064837c7ae4 | |||
| EPA-R03-OAR-2017-0730-0012 | EPA | None EPA-R03-OAR-2017-0730 | SO2_SIP_IPs_commentsreponses | Supporting & Related Material | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:07:48Z | 0 | 0 | 09000064837c76ae | ||||
| EPA-R03-OAR-2017-0730-0004 | EPA | None EPA-R03-OAR-2017-0730 | DEP_letter_scanned | Supporting & Related Material | Letter | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:08:15Z | 0 | 0 | 0900006483775aea | |||
| EPA-R03-OAR-2017-0730-0001 | EPA | None EPA-R03-OAR-2017-0730 | Air Quality State Implementation Plans; Approval and Promulgation: Pennsylvania; Attainment Plan for the Allegheny, Pennsylvania Nonattainment Area for the 2010 Sulfur Dioxide Primary National Ambient Air Quality Standard | Proposed Rule | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-11-19T05:00:00Z | 2018-12-20T04:59:59Z | 2018-12-22T02:05:45Z | 2018-25079 | 0 | 0 | 09000064838e6d68 | |
| EPA-R03-OAR-2017-0730-0003 | EPA | None EPA-R03-OAR-2017-0730 | Allegheny SIP Signed Letter to EPA | Supporting & Related Material | Letter | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:08:14Z | 0 | 0 | 0900006483775ae9 | |||
| EPA-R03-OAR-2017-0730-0006 | EPA | None EPA-R03-OAR-2017-0730 | Alternative_Demo_cover_letter_final_signed | Supporting & Related Material | Letter | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:07:44Z | 0 | 0 | 0900006483777928 | |||
| EPA-R03-OAR-2017-0730-0010 | EPA | None EPA-R03-OAR-2017-0730 | AllghenyPA_ModelingTSD_R3_Final | Supporting & Related Material | Technical Support Document | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-12-07T10:06:38Z | 0 | 0 | 090000648377a57e |
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;