documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-R09-OAR-2018-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), 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-R09-OAR-2018-0562-0103 | EPA | None EPA-R09-OAR-2018-0562 | B.8_2018-12-03_Fideldy email | Supporting & Related Material | 2020-07-08T04:00:00Z | 2020 | 7 | 2020-10-06T08:28:35Z | 0 | 0 | 0900006484732e1c | ||||
| EPA-R09-OAR-2018-0562-0100 | EPA | None EPA-R09-OAR-2018-0562 | F-5_Imperial RACT SIP-final action-signed signed copy bw | Supporting & Related Material | 2020-02-27T05:00:00Z | 2020 | 2 | 2020-10-06T08:28:25Z | 0 | 0 | 09000064843b73b4 | ||||
| EPA-R09-OAR-2018-0562-0096 | EPA | None EPA-R09-OAR-2018-0562 | F-1_19920904_calcagni_process_redesignation_guidance | Supporting & Related Material | 2020-02-27T05:00:00Z | 2020 | 2 | 2020-10-06T08:28:33Z | 0 | 0 | 09000064843b73b0 | ||||
| EPA-R09-OAR-2018-0562-0098 | EPA | None EPA-R09-OAR-2018-0562 | F-3_Imperial 2018 RR-MP for PM10 | Supporting & Related Material | 2020-02-27T05:00:00Z | 2020 | 2 | 2020-10-06T08:28:29Z | 0 | 0 | 09000064843b73b2 | ||||
| EPA-R09-OAR-2018-0562-0097 | EPA | None EPA-R09-OAR-2018-0562 | F-2_81 FR 18766_April 1 2016 | Supporting & Related Material | 2020-02-27T05:00:00Z | 2020 | 2 | 2020-10-06T08:28:31Z | 0 | 0 | 09000064843b73b1 | ||||
| EPA-R09-OAR-2018-0562-0099 | EPA | None EPA-R09-OAR-2018-0562 | F-4_84 FR 52005_Oct 1 2019 | Supporting & Related Material | 2020-02-27T05:00:00Z | 2020 | 2 | 2020-10-06T08:28:27Z | 0 | 0 | 09000064843b73b3 | ||||
| EPA-R09-OAR-2018-0562-0095 | EPA | None EPA-R09-OAR-2018-0562 | Air Quality State Implementation Plans; Approvals and Promulgations: California; Clean Air Plans; 2008 8-Hour Ozone Nonattainment Area Requirements; Determination of Attainment by the Attainment Date; Imperial County, CA | Rule | 2020-02-27T05:00:00Z | 2020 | 2 | 2020-02-27T05:00:00Z | 2020-02-27T17:38:49Z | 2020-03152 | 0 | 0 | 09000064843ba445 | ||
| EPA-R09-OAR-2018-0562-0101 | EPA | None EPA-R09-OAR-2018-0562 | F-6_2020-02-03_Bohnenkamp Memo to Docket | Supporting & Related Material | 2020-02-27T05:00:00Z | 2020 | 2 | 2020-10-06T08:27:24Z | 0 | 0 | 09000064843b73b5 | ||||
| EPA-R09-OAR-2018-0562-0102 | EPA | None EPA-R09-OAR-2018-0562 | Imperial Ozone Final Docket Index | Supporting & Related Material | 2020-02-27T05:00:00Z | 2020 | 2 | 2020-10-06T08:27:50Z | 0 | 0 | 09000064843b73b6 |
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;