documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-R06-OAR-2015-0609" 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-2015-0609-0011 | EPA | None EPA-R06-OAR-2015-0609 | TX177.11 Approval and Promulgation of Implementation Plans and Designation of Areas for Air Quality Planning Purposes; Texas; Clean Air Act Redesignation Substitute for the Houston-Galveston-Brazoria 1997 8-Hour Ozone Nonattainment Area, Final rule, 4 pages. | Rule | 2016-11-08T05:00:00Z | 2016 | 11 | 2016-11-08T05:00:00Z | 2016-11-08T18:39:53Z | 2016-26586 | 0 | 0 | 090000648237b7b1 | ||
| EPA-R06-OAR-2015-0609-0003 | EPA | None EPA-R06-OAR-2015-0609 | TX177.03 Texas Redesignation Substitute Report for the Houston-Galveston-Brazoria (HGB) 1997 Eight-Hour Ozone Standard Nonattainment Area, submitted to EPA August 18, 2015 (TX-379), 53 pages, 1.2 MB, v94 | Supporting & Related Material | 2016-05-25T04:00:00Z | 2016 | 5 | 2016-05-26T00:51:34Z | 0 | 0 | 0900006481c431ba | ||||
| EPA-R06-OAR-2015-0609-0001 | EPA | None EPA-R06-OAR-2015-0609 | TX177.01 Air Quality State Implementation Plans; Texas; Clean Air Act Redesignation Substitute for the Houston-Galveston-Brazoria 1997 8-hour Ozone Nonattainment Area, Proposed rule, 4 pages. | Proposed Rule | 2016-05-25T04:00:00Z | 2016 | 5 | 2016-05-25T04:00:00Z | 2016-06-25T03:59:59Z | 2018-06-05T01:05:34Z | 2016-12230 | 0 | 0 | 0900006481fee7e9 | |
| EPA-R06-OAR-2015-0609-0002 | EPA | None EPA-R06-OAR-2015-0609 | TX177.02 EPA Technical Support Document for the Houston-Galveston-Brazoria Redesignation Substitute for the 1997 8-Hour Ozone NAAQS. 16 pages w5i | Supporting & Related Material | 2016-05-25T04:00:00Z | 2016 | 5 | 2016-05-26T00:50:49Z | 0 | 0 | 0900006481c431b9 | ||||
| EPA-R06-OAR-2015-0609-0004 | EPA | None EPA-R06-OAR-2015-0609 | TX177.04 Note about the Redesignation Substitute Reports | Supporting & Related Material | 2016-05-25T04:00:00Z | 2016 | 5 | 2016-05-26T00:50:44Z | 0 | 0 | 0900006481fef686 |
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;