documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-R09-OAR-2018-0778" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0778-0002 | EPA | None EPA-R09-OAR-2018-0778 | EPA DOCKET INDEX; Findings of Failure to Submit Complete State Implementation Plans Required for the 1997, 2006, and 2012 PM2.5 NAAQS; California; San Joaquin Valley | Supporting & Related Material | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T18:51:09Z | 0 | 0 | 09000064839543dd | ||||
| EPA-R09-OAR-2018-0778-0001 | EPA | None EPA-R09-OAR-2018-0778 | Findings of Failure To Submit Complete State Implementation Plans Required for the 1997, 2006, and 2012 PM2.5 NAAQS; California; San Joaquin Valley | Rule | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-06T05:00:00Z | 2018-12-06T18:38:33Z | 2018-26359 | 0 | 0 | 090000648394c4cf | ||
| EPA-R09-OAR-2018-0778-0003 | EPA | None EPA-R09-OAR-2018-0778 | 2018-11-16 CARB-Karperos SIP Transmittal Letter to EPA-Stoker | Supporting & Related Material | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T18:45:48Z | 0 | 0 | 0900006483952810 | ||||
| EPA-R09-OAR-2018-0778-0006 | EPA | None EPA-R09-OAR-2018-0778 | 2016 Moderate Area Plan for the 2012 PM2.5 Standard, SJVAPCD, adopted September 15, 2016, with enclosures. | Supporting & Related Material | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T18:47:42Z | 0 | 0 | 09000064839543a5 | ||||
| EPA-R09-OAR-2018-0778-0007 | EPA | None EPA-R09-OAR-2018-0778 | 2013-01-04_NRDC v EPA_PM Imp Rule_706 F.3d 428 (DC Cir. 2013) | Supporting & Related Material | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T18:48:20Z | 0 | 0 | 09000064839543dc | ||||
| EPA-R09-OAR-2018-0778-0005 | EPA | None EPA-R09-OAR-2018-0778 | 2018 Plan for the 1997, 2006, and 2012 PM2.5 Standards, San Joaquin Valley (SJV) Air Pollution Control District (APCD), adopted November 15, 2018, with enclosures. | Supporting & Related Material | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T18:50:41Z | 0 | 0 | 0900006483954320 | ||||
| EPA-R09-OAR-2018-0778-0004 | EPA | None EPA-R09-OAR-2018-0778 | San Joaquin Valley Supplement to the 2016 State Strategy for the State Implementation Plan, CARB, Adopted October 25, 2018 (“Valley State SIP Strategy,” excluding appendices), with enclosures. | Supporting & Related Material | 2018-12-06T05:00:00Z | 2018 | 12 | 2018-12-07T18:52:35Z | 0 | 0 | 0900006483952811 |
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;