documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "EPA" and docket_id = "EPA-R06-OAR-2015-0721" 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-0721-0008 | EPA | None EPA-R06-OAR-2015-0721 | TX178.08 Approval and Promulgation of Implementation Plans and Designation of Areas for Air Quality Planning Purposes; Texas; Clean Air Act Redesignation Substitute for the Dallas-Fort Worth 1-Hour Ozone and 1997 8-Hour Ozone Nonattainment Areas, Final rule, 4 pages. | Rule | 2016-11-08T05:00:00Z | 2016 | 11 | 2016-11-08T05:00:00Z | 2016-11-08T18:07:14Z | 2016-26585 | 0 | 0 | 090000648237b695 | ||
| EPA-R06-OAR-2015-0721-0004 | EPA | None EPA-R06-OAR-2015-0721 | TX178.04 Note about the Redesignation Substitute Reports | Supporting & Related Material | 2016-05-25T04:00:00Z | 2016 | 5 | 2016-05-26T00:52:29Z | 0 | 0 | 0900006481fef68c | ||||
| EPA-R06-OAR-2015-0721-0003 | EPA | None EPA-R06-OAR-2015-0721 | TX178.03 Texas Redesignation Substitute Report for the Dallas-Fort Worth (DFW) One-Hour and 1997 Eight-Hour Ozone Standard Nonattainment Areas, submitted to EPA August 18, 2015 (TX-379). 65 pages 2.2 MB w5n | Supporting & Related Material | 2016-05-25T04:00:00Z | 2016 | 5 | 2016-05-26T00:52:19Z | 0 | 0 | 0900006481fdb5e4 | ||||
| EPA-R06-OAR-2015-0721-0001 | EPA | None EPA-R06-OAR-2015-0721 | TX178.01 Air Quality State Implementation Plans; Texas; Clean Air Act Redesignation Substitute for the Dallas-Fort Worth 1-Hour Ozone and 1997 8-Hour Ozone Nonattainment Areas, Proposed rule, 6 pages. | Proposed Rule | 2016-05-25T04:00:00Z | 2016 | 5 | 2016-05-25T04:00:00Z | 2016-06-25T03:59:59Z | 2016-06-25T01:01:01Z | 2016-12229 | 0 | 0 | 0900006481feed15 | |
| EPA-R06-OAR-2015-0721-0002 | EPA | None EPA-R06-OAR-2015-0721 | TX178.02 EPA Technical Support Document for the Dallas-Fort Worth Redesignation Substitute for the 1-hour and 1997 8-hour Ozone NAAQS. 23 pages w5i | Supporting & Related Material | 2016-05-25T04:00:00Z | 2016 | 5 | 2016-05-26T00:52:24Z | 0 | 0 | 0900006481fdb5e3 |
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;