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-2012-0205" 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-2012-0205-0005 | EPA | None EPA-R06-OAR-2012-0205 | TX136.05 Air Quality State Implementation Plans; Approval and Promulgation; Texas; El Paso Particulate Matter Contingency Measures, Final Rule, 3 pages. | Rule | 2015-12-14T05:00:00Z | 2015 | 12 | 2015-12-14T05:00:00Z | 2015-12-14T17:59:01Z | 2015-31310 | 0 | 0 | 0900006481da1f59 | ||
| EPA-R06-OAR-2012-0205-0004 | EPA | None EPA-R06-OAR-2012-0205 | TX136.04 Texas Revision to SIP for El Paso Particulates With an Aerodynamic Diameter Less than or Equal to a Nominal Ten Micrometers (PM-10) Moderate Nonattainment Area RE: Revised Memorandum of Agreement with the City of El Paso, Texas Project No. 2011-010-SIP-NR, submitted to EPA March 7, 2012 (TX-329, SIP). 180 Pages 6.5 MB s3h | Supporting & Related Material | State/Tribal Submittal | 2015-08-19T04:00:00Z | 2015 | 8 | 2015-08-20T00:33:29Z | 0 | 0 | 0900006480fda521 | |||
| EPA-R06-OAR-2012-0205-0003 | EPA | None EPA-R06-OAR-2012-0205 | TX136.03 Texas Revisions to 30 TAC Chapter 111 Control of Air Pollution from Visible Emissions and Particulate Matter RE Revision of El Paso PM-10 and Less Controls for Roads, Streets, Alleys, Texas Project No. 2010-046-111-EN, submitted to EPA March 7, 2012 (TX-329, 1-23). 57 Pages 2.6 MB s3h | Supporting & Related Material | State/Tribal Submittal | 2015-08-19T04:00:00Z | 2015 | 8 | 2015-08-20T00:33:21Z | 0 | 0 | 0900006480fd39a8 | |||
| EPA-R06-OAR-2012-0205-0001 | EPA | None EPA-R06-OAR-2012-0205 | TX136.01 Air Quality State Implementation Plans; Approval and Promulgation; Texas; El Paso Particulate Matter Contingency Measures, Proposed rule, 3 pages. -- This Federal Register actions begins on the lower left corner of the first page. | Proposed Rule | 2015-08-19T04:00:00Z | 2015 | 8 | 2015-08-19T04:00:00Z | 2015-09-19T03:59:59Z | 2015-08-19T15:52:15Z | 2015-20499 | 0 | 0 | 0900006481c2a08c | |
| EPA-R06-OAR-2012-0205-0002 | EPA | None EPA-R06-OAR-2012-0205 | TX136.02 Technical Support Document: El Paso PM10 Contingency SIP. 6 pages. | Supporting & Related Material | 2015-08-19T04:00:00Z | 2015 | 8 | 2015-08-20T00:33:34Z | 0 | 0 | 0900006481bc9010 |
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;