documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-R09-OAR-2014-0708" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-R09-OAR-2014-0708-0053 | EPA | None EPA-R09-OAR-2014-0708 | Health Advocates Comments on EPA Proposed Clean Data Determination | Supporting & Related Material | 2015-01-23T05:00:00Z | 2015 | 1 | 2015-01-23T17:37:58Z | 0 | 0 | 09000064819dc2f4 | ||||
| EPA-R09-OAR-2014-0708-0049 | EPA | None EPA-R09-OAR-2014-0708 | 79 FR 72999 SC proposed CDD | Supporting & Related Material | 2015-01-06T05:00:00Z | 2015 | 1 | 2015-01-14T01:59:17Z | 0 | 0 | 090000648199e466 | ||||
| EPA-R09-OAR-2014-0708-0048 | EPA | None EPA-R09-OAR-2014-0708 | Clean Data Determination for 1997 PM2.5 Standards: California - South Coast; Applicability of Clean Air Act Requirements | Proposed Rule | 2015-01-06T05:00:00Z | 2015 | 1 | 2015-01-06T05:00:00Z | 2015-01-23T04:59:59Z | 2015-01-14T02:15:01Z | 2014-30951 | 0 | 0 | 09000064819a63ec | |
| EPA-R09-OAR-2014-0708-0050 | EPA | None EPA-R09-OAR-2014-0708 | A-1 Docket Index 2014-0708_final_rev | Supporting & Related Material | 2015-01-06T05:00:00Z | 2015 | 1 | 2015-01-14T01:59:17Z | 0 | 0 | 090000648199e467 | ||||
| EPA-R09-OAR-2014-0708-0052 | EPA | None EPA-R09-OAR-2014-0708 | SC_PM2 5 CDD_extension of comment period_prepub | Supporting & Related Material | 2015-01-06T05:00:00Z | 2015 | 1 | 2015-01-14T01:59:17Z | 0 | 0 | 090000648199e47f | ||||
| EPA-R09-OAR-2014-0708-0051 | EPA | None EPA-R09-OAR-2014-0708 | CBE_2014-0708 req for ext | Supporting & Related Material | 2015-01-06T05:00:00Z | 2015 | 1 | 2015-01-14T01:59:17Z | 0 | 0 | 090000648199e468 |
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;