documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-R06-OAR-2008-0074" 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-2008-0074-0003 | EPA | None EPA-R06-OAR-2008-0074 | TX075.03 Texas Request for Formal Delegation of Maximum Achievable Control Technology (MACT) Standards under 40 CFR Part 63, Subpart E, Texas Rule Project 2007-012-113-PR, submitted to EPA January 16, 2008 (TX-255, 3-20). 21 pages uyr | Supporting & Related Material | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T18:10:28Z | 0 | 0 | 09000064818892da | ||||
| EPA-R06-OAR-2008-0074-0001 | EPA | None EPA-R06-OAR-2008-0074 | TX075.01 National Emission Standards for Hazardous Air Pollutants; Delegation of Authority to Texas; Direct final rule. | Rule | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T05:00:00Z | 2014-12-27T04:59:59Z | 2014-11-25T17:17:55Z | 2014-27909 | 0 | 0 | 0900006481944b8c | |
| EPA-R06-OAR-2008-0074-0004 | EPA | None EPA-R06-OAR-2008-0074 | TX075.04 Texas Request for Formal Delegation of Maximum Achievable Control Technology and Generally Available Control Technology Standards under Title 40 Code of Federal Regulations Part 63, Subpart E, Texas Rule Project 2013-004-113-AI, submitted to EPA August 28, 2013 (TX-366, 3-22). 89 pages 1.7 MB u9n | Supporting & Related Material | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T18:12:56Z | 0 | 0 | 09000064818892db | ||||
| EPA-R06-OAR-2008-0074-0002 | EPA | None EPA-R06-OAR-2008-0074 | TX075.02 National Emission Standards for Hazardous Air Pollutants; Delegation of Authority to Texas; Proposed rule. | Proposed Rule | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T05:00:00Z | 2014-12-27T04:59:59Z | 2014-11-27T03:01:59Z | 2014-27910 | 0 | 0 | 09000064819444d0 |
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;