documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-R06-OAR-2016-0611" 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-R06-OAR-2016-0611-0196 | EPA | None EPA-R06-OAR-2016-0611 | TX187.185 Air Quality State Implementation Plans; Approvals and Promulgations: Texas; Interstate Visibility Transport, Proposed rule, 6 pages. | Proposed Rule | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-27T04:00:00Z | 2020-11-28T04:59:59Z | 2020-11-02T02:01:24Z | 2020-22846 | 0 | 0 | 09000064849364f1 | |
| EPA-R06-OAR-2016-0611-0198 | EPA | None EPA-R06-OAR-2016-0611 | TX187.187 Texas Federal Clean Air Act, Sections 110(A)(1) and (2) Transport State Implementation Plan Revision For The 2015 Ozone National Ambient Air Quality Standards, Texas Project Number 2017-039-SIP-NR, Adopted by TCEQ August 8, 2018 | Supporting & Related Material | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:52:04Z | 0 | 0 | 09000064848f22e4 | ||||
| EPA-R06-OAR-2016-0611-0197 | EPA | None EPA-R06-OAR-2016-0611 | TX187.186 Texas Federal Clean Air Act, Sections 110(A)(1) and (2) Infrastructure and Transport State Implementation Plan Revision for the 2012 PM2.5 National Ambient Air Quality Standard, Texas Project Number 2014-029-SIP-NR, Adopted by TCEQ November 4, 2015 | Supporting & Related Material | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:52:19Z | 0 | 0 | 09000064848f22e3 | ||||
| EPA-R06-OAR-2016-0611-0190 | EPA | None EPA-R06-OAR-2016-0611 | TX187.179 Air Quality State Implementation Plans; Approvals and Promulgations: Texas; Regional Haze and Interstate Visibility Transport Federal Implementation Plan, Final rule, 51 pages. | Rule | 2020-08-12T04:00:00Z | 2020 | 8 | 2020-08-12T04:00:00Z | 2020-08-12T16:00:02Z | 2020-14408 | 0 | 0 | 09000064847f44b8 | ||
| EPA-R06-OAR-2016-0611-0195 | EPA | None EPA-R06-OAR-2016-0611 | TX187.184 Texas and Oklahoma Regional Haze FIP Proposed Rule- 79 FR 74818 (Dec 16, 2014) | Supporting & Related Material | 2020-08-12T04:00:00Z | 2020 | 8 | 2020-10-05T20:31:14Z | 0 | 0 | 090000648472a41e | ||||
| EPA-R06-OAR-2016-0611-0194 | EPA | None EPA-R06-OAR-2016-0611 | TX187.183 Twin Oaks SO2 Annual Emissions for 2009 and 2017-2019 | Supporting & Related Material | 2020-08-12T04:00:00Z | 2020 | 8 | 2020-10-05T20:31:16Z | 0 | 0 | 090000648472a41d | ||||
| EPA-R06-OAR-2016-0611-0193 | EPA | None EPA-R06-OAR-2016-0611 | TX187.182 Texas EGU 2002 SO2 Emissions | Supporting & Related Material | 2020-08-12T04:00:00Z | 2020 | 8 | 2020-10-05T20:31:35Z | 0 | 0 | 090000648472a41c | ||||
| EPA-R06-OAR-2016-0611-0192 | EPA | None EPA-R06-OAR-2016-0611 | TX187.181 EPA Modified Version of Commenter's Exhibit 3 | Supporting & Related Material | 2020-08-12T04:00:00Z | 2020 | 8 | 2020-10-05T20:31:36Z | 0 | 0 | 090000648472a51c | ||||
| EPA-R06-OAR-2016-0611-0191 | EPA | None EPA-R06-OAR-2016-0611 | TX187.180 Response to Comments Document for Texas Regional Haze BART and Interstate Visibility Transport FIP Affirmation and Revision | Supporting & Related Material | 2020-08-12T04:00:00Z | 2020 | 8 | 2020-10-05T20:31:39Z | 0 | 0 | 090000648472a51b |
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;