documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-R06-OAR-2005-TX-0025" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_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-0025-0376 | EPA | None EPA-R06-OAR-2005-TX-0025 | TX031.374 Second Addendum to Technical Support Document. 2 pages nx1 | Supporting & Related Material | Technical Support Document | 2010-10-01T04:00:00Z | 2010 | 10 | 2010-10-01T21:44:09Z | 0 | 0 | 0900006480b65e83 | |||
| EPA-R06-OAR-2005-TX-0025-0375 | EPA | None EPA-R06-OAR-2005-TX-0025 | TX031.372 Congressional Review. 3 pages n9e | Supporting & Related Material | Interagency Review | 2010-09-15T04:00:00Z | 2010 | 9 | 2010-09-15T16:32:06Z | 0 | 0 | 0900006480b3aaef | |||
| EPA-R06-OAR-2005-TX-0025-0373 | EPA | None EPA-R06-OAR-2005-TX-0025 | TX031.370 EPA Comments on TCEQ Rule Project Number 2010-006-116-PR, June 10, 2010. 7 pages 1.7 MB n8r1 | Supporting & Related Material | Letter, Memorandum, Email | 2010-09-15T04:00:00Z | 2010 | 9 | 2010-09-15T16:31:49Z | 0 | 0 | 0900006480b3aaed | |||
| EPA-R06-OAR-2005-TX-0025-0374 | EPA | None EPA-R06-OAR-2005-TX-0025 | TX031.371 Federal Register Final Rule as signed by the Regional Administrator -- Available in docket EPA-R06-OAR-2006-0133, document EPA-R06-OAR-2006-0133-0373 | Supporting & Related Material | Federal Register Document | 2010-09-15T04:00:00Z | 2010 | 9 | 2010-09-15T16:31:56Z | 0 | 0 | 0900006480b3aaee | |||
| EPA-R06-OAR-2005-TX-0025-0372 | EPA | None EPA-R06-OAR-2005-TX-0025 | TX031.373 Approvals and Promulgations of Air Quality Implementation Plans: Texas; Revisions to New Source Review (NSR) State Implementation Plan (SIP); Nonattainment NSR (NNSR) for the 1-Hour and the 1997 8-Hour Ozone Standard, NSR Reform, and a Standard Permit; Final Rule. 31 pages n9f | Rule | Federal Register Document | 2010-09-15T04:00:00Z | 2010 | 9 | 2010-09-15T04:00:00Z | 2010-09-15T16:29:45Z | 2010-22670 | 0 | 0 | 0900006480b4fddf | |
| EPA-R06-OAR-2005-TX-0025-0370 | EPA | None EPA-R06-OAR-2005-TX-0025 | TX031.367 Federal Register Final Rule as signed by the Regional Administrator. 116 pages 3.2 MB n4a | Supporting & Related Material | Federal Register Document | 2010-04-16T04:00:00Z | 2010 | 4 | 2010-04-16T15:20:55Z | 0 | 0 | 0900006480ad4a63 | |||
| EPA-R06-OAR-2005-TX-0025-0369 | EPA | None EPA-R06-OAR-2005-TX-0025 | TX031.366 Addendum to Technical Support Document: Approval and Promulgation of Implementation Plans; Texas; Revisions to the New Source Review (NSR) State Implementation Plan (SIP); Modification of Existing Qualified Facilities Program and General Definitions; Docket No. EPA-R06-OAR-2005-TX-0025. 4 pages n43 | Supporting & Related Material | Technical Support Document | 2010-04-16T04:00:00Z | 2010 | 4 | 2010-04-16T15:20:42Z | 0 | 0 | 0900006480ad4a62 | |||
| EPA-R06-OAR-2005-TX-0025-0371 | EPA | None EPA-R06-OAR-2005-TX-0025 | TX031.368 Congressional Review. 3 pages n48 | Supporting & Related Material | Interagency Review | 2010-04-16T04:00:00Z | 2010 | 4 | 2010-04-16T15:21:06Z | 0 | 0 | 0900006480ad4910 | |||
| EPA-R06-OAR-2005-TX-0025-0368 | EPA | None EPA-R06-OAR-2005-TX-0025 | TX031.369 Approval and Promulgation of Implementation Plans: Texas; Revisions to the New Source Review State Implementation Plan; Modification of Existing Qualified Facilities Program and General Definitions | Rule | 2010-04-14T04:00:00Z | 2010 | 4 | 2010-04-13T04:00:00Z | 2010-04-16T15:22:12Z | 2010-08019 | 0 | 0 | 0900006480ad7213 |
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;