documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-R03-OAR-2019-0562" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-2019-0562-0011 | EPA | None EPA-R03-OAR-2019-0562 | Air Quality State Implementation Plans; Approvals and Promulgations: Pennsylvania; Reasonably Available Control Technology for Volatile Organic Compounds Under the 2008 Ozone National Ambient Air Quality Standards | Rule | 2020-12-14T05:00:00Z | 2020 | 12 | 2020-12-14T05:00:00Z | 2020-12-15T03:43:43Z | 2020-23857 | 0 | 0 | 090000648499bc71 | ||
| EPA-R03-OAR-2019-0562-0004 | EPA | None EPA-R03-OAR-2019-0562 | August 13, 2018 Submittal; Part 2 | Supporting & Related Material | 2020-03-05T05:00:00Z | 2020 | 3 | 2020-10-05T11:36:14Z | 0 | 0 | 090000648434f46e | ||||
| EPA-R03-OAR-2019-0562-0001 | EPA | None EPA-R03-OAR-2019-0562 | Air Quality State Implementation Plans; Approvals and Promulgations: Pennsylvania; Reasonably Available Control Technology for Volatile Organic Compounds under the 2008 Ozone National Ambient Air Quality Standards | Proposed Rule | 2020-03-05T05:00:00Z | 2020 | 3 | 2020-03-05T05:00:00Z | 2020-04-07T03:59:59Z | 2020-04-08T01:00:32Z | 2020-04453 | 0 | 0 | 09000064843ed697 | |
| EPA-R03-OAR-2019-0562-0003 | EPA | None EPA-R03-OAR-2019-0562 | EPA Technical Support Document | Supporting & Related Material | Technical Support Document | 2020-03-05T05:00:00Z | 2020 | 3 | 2020-10-05T11:36:46Z | 0 | 0 | 090000648434fa74 | |||
| EPA-R03-OAR-2019-0562-0002 | EPA | None EPA-R03-OAR-2019-0562 | PA RACT SIP 2008 Ozone NAAQS Completeness Letter_8-29-18 | Supporting & Related Material | 2020-03-05T05:00:00Z | 2020 | 3 | 2020-10-05T11:38:00Z | 0 | 0 | 090000648434fab6 | ||||
| EPA-R03-OAR-2019-0562-0005 | EPA | None EPA-R03-OAR-2019-0562 | August 13, 2018 Submittal; Part 1 | Supporting & Related Material | State/Tribal Submittal | 2020-03-05T05:00:00Z | 2020 | 3 | 2020-10-05T11:36:15Z | 0 | 0 | 090000648434f46a |
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;