documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "EPA" and docket_id = "EPA-R06-OAR-2015-0495" 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-0495-0006 | EPA | None EPA-R06-OAR-2015-0495 | TX173.06 Air Quality State Implementation Plans; Approval and Promulgation: Texas; Reasonable Further Progress Plan and Motor Vehicle Emissions Budgets for the Dallas/Fort Worth 2008 Ozone Nonattainment Area, Final rule, 2 pages. | Rule | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2016-12-07T18:01:41Z | 2016-29274 | 0 | 0 | 09000064823e6f99 | ||
| EPA-R06-OAR-2015-0495-0002 | EPA | None EPA-R06-OAR-2015-0495 | TX173.02 EPA Technical Support Document. 13 pages w9g | Supporting & Related Material | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-21T01:14:58Z | 0 | 0 | 0900006481ba910a | ||||
| EPA-R06-OAR-2015-0495-0003 | EPA | None EPA-R06-OAR-2015-0495 | TX173.03 Texas Revisions to the Dallas-Fort Worth Area 2008 Eight-Hour Ozone Standard Reasonable Further Progress State Implementation Plan, Texas Project No. 2013-014-SIP-NR, submitted to EPA July 10, 2015 (TX-375, SIP). 312 pages 13.3 MB v7w | Supporting & Related Material | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-21T01:14:48Z | 0 | 0 | 0900006481ba910b | ||||
| EPA-R06-OAR-2015-0495-0001 | EPA | None EPA-R06-OAR-2015-0495 | TX173.01 Air Quality State Implementation Plans; Approval and Promulgation: Texas; Reasonable Further Progress Plan and Motor Vehicle Emissions Budgets for the Dallas/Fort Worth 2008 Ozone Nonattainment Area, Proposed rule, 6 pages. | Proposed Rule | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-20T04:00:00Z | 2016-10-21T03:59:59Z | 2016-09-20T17:16:25Z | 2016-22564 | 0 | 0 | 090000648222d489 | |
| EPA-R06-OAR-2015-0495-0004 | EPA | None EPA-R06-OAR-2015-0495 | TX173.04 Texas Commission on Environmental Quality Technical Supplement to the June 3, 2015 Adoption (Texas Project No. 2013-014-SIP-NR) of the Dallas/Fort Worth Reasonable Further Progress State Implementation Plan Revision for the 2008 Eight-Hour Ozone Standard Nonattainment Area, submitted to EPA April 22, 2016 (TX-375, SIP). 176 pages 1.7 MB w4t | Supporting & Related Material | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-21T01:14:53Z | 0 | 0 | 0900006481dff1ac | ||||
| EPA-R06-OAR-2015-0495-0005 | EPA | None EPA-R06-OAR-2015-0495 | TX173.05 Air Quality State Implementation Plans; Approval and Promulgation; Texas; Adequacy Status of the Dallas-Fort Worth, Texas Reasonable Further Progress 8-Hour Ozone Motor Vehicle Emission Budgets for Transportation Conformity Purposes, Notice of adequacy, published in Federal Register January 11, 2016 (81 FR 1184). 2 pages w9k | Notice | 2016-01-11T05:00:00Z | 2016 | 1 | 2016-01-11T05:00:00Z | 2016-09-20T17:52:21Z | 2016-00339 | 0 | 0 | 0900006481dfcdf4 |
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;