documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-R04-OAR-2015-0154" 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-R04-OAR-2015-0154-0009 | EPA | None EPA-R04-OAR-2015-0154 | 4-12-2012-SO2 Letter to States-FL sample | Supporting & Related Material | 2016-11-28T05:00:00Z | 2016 | 11 | 2016-12-09T05:26:34Z | 0 | 0 | 09000064823bf1ba | ||||
| EPA-R04-OAR-2015-0154-0010 | EPA | None EPA-R04-OAR-2015-0154 | Draft SO2 White paper | Supporting & Related Material | 2016-11-28T05:00:00Z | 2016 | 11 | 2016-12-09T05:26:39Z | 0 | 0 | 09000064823bf1bb | ||||
| EPA-R04-OAR-2015-0154-0018 | EPA | None EPA-R04-OAR-2015-0154 | Air Quality State Implementation Plans; Approvals and Promulgations: Air Quality Plans; Tennessee; Infrastructure Requirements for 2010 Sulfur Dioxide National Ambient Air Quality Standard | Rule | 2016-11-28T05:00:00Z | 2016 | 11 | 2016-11-28T05:00:00Z | 2016-12-09T05:26:43Z | 2016-28429 | 0 | 0 | 09000064823c2001 | ||
| EPA-R04-OAR-2015-0154-0002 | EPA | None EPA-R04-OAR-2015-0154 | TN-Monitoring Network FY2015-10-26-15 Ltr | Supporting & Related Material | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-11T01:35:32Z | 0 | 0 | 0900006481eb8044 | ||||
| EPA-R04-OAR-2015-0154-0004 | EPA | None EPA-R04-OAR-2015-0154 | Technical Support Document-PSD-GA-KY-SC-TN | Supporting & Related Material | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-11T01:35:48Z | 0 | 0 | 0900006481eb7fee | ||||
| EPA-R04-OAR-2015-0154-0001 | EPA | None EPA-R04-OAR-2015-0154 | Air Quality State Implementation Plans; Approvals and Promulgations: Tennessee; Infrastructure Requirements for the 2010 Sulfur Dioxide National Ambient Air Quality Standard | Proposed Rule | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-10T05:00:00Z | 2016-04-12T03:59:59Z | 2016-11-26T02:01:42Z | 2016-05160 | 0 | 0 | 0900006481eb8274 | |
| EPA-R04-OAR-2015-0154-0005 | EPA | None EPA-R04-OAR-2015-0154 | TDEC Grants Letter 2014-03-09-2015 | Supporting & Related Material | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-11T01:35:42Z | 0 | 0 | 0900006481eb7fed | ||||
| EPA-R04-OAR-2015-0154-0003 | EPA | None EPA-R04-OAR-2015-0154 | TN 2010 NO2 and SO2 Final SIP | Supporting & Related Material | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-11T01:35:37Z | 0 | 0 | 0900006481eb8043 |
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;