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-2005-TX-0002" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2005-TX-0002-0002 | EPA | None EPA-R06-OAR-2005-TX-0002 | TX008.02. Air Quality State Implementation Plans; Approval and Promulgation; Texas; Repeal of Lead Emission Rules for Stationary Sources in El Paso and Dallas County, Proposed rule. | Proposed Rule | 2014-12-12T05:00:00Z | 2014 | 12 | 2014-12-12T05:00:00Z | 2015-01-13T04:59:59Z | 2014-12-12T16:52:41Z | 2014-29144 | 0 | 0 | 09000064819703f9 | |
| EPA-R06-OAR-2005-TX-0002-0004 | EPA | None EPA-R06-OAR-2005-TX-0002 | TX008.04 Spreadsheet of lead emissions for Dallas, El Paso and Tarrant counties (2011 National Emissions Inventory) | Supporting & Related Material | State/Tribal Submittal | 2014-12-12T05:00:00Z | 2014 | 12 | 2014-12-12T16:55:35Z | 0 | 0 | 09000064800a8d92 | |||
| EPA-R06-OAR-2005-TX-0002-0001 | EPA | None EPA-R06-OAR-2005-TX-0002 | TX008.01. Air Quality State Implementation Plans; Approval and Promulgation; Texas; Repeal of Lead Emission Rules for Stationary Sources in El Paso and Dallas County, Direct final rule. | Rule | 2014-12-12T05:00:00Z | 2014 | 12 | 2014-12-12T05:00:00Z | 2015-01-13T04:59:59Z | 2014-12-12T16:50:09Z | 2014-29146 | 0 | 0 | 0900006481970988 | |
| EPA-R06-OAR-2005-TX-0002-0005 | EPA | None EPA-R06-OAR-2005-TX-0002 | TX008.05 February 9, 2009 letter from TCEQ to ASARCO LLC voiding Air Permits for Asarco El Paso plant site. | Supporting & Related Material | State/Tribal Submittal | 2014-12-12T05:00:00Z | 2014 | 12 | 2014-12-12T16:56:19Z | 0 | 0 | 09000064800a8dc1 | |||
| EPA-R06-OAR-2005-TX-0002-0003 | EPA | None EPA-R06-OAR-2005-TX-0002 | TX008.03 Texas Revisions to 30 TAC Chapter 113, RE: Repeal of Certain Lead Emission Rules Covering Sources in Dallas and El Paso Counties, submitted to EPA February 5, 1999 (TX-111, 3-13). 60 pages 1.8 MB uz4 | Supporting & Related Material | State/Tribal Submittal | 2014-12-12T05:00:00Z | 2014 | 12 | 2014-12-12T16:54:57Z | 0 | 0 | 09000064800a8d69 |
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;