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-2017-0192" 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-2017-0192-0006 | EPA | None EPA-R06-OAR-2017-0192 | TX199.06 Texas Final Rule Revisions to 30 TAC Chapter 101, General Air Quality Rules, Subchapter H, Division 1, Emission Credit Program, and Division 4, Discrete Emission Credit Program, Texas Rule Project No. 2016-041-101-AI, submitted to EPA October 10, 2017 (TX-406, G-105, GH1,4). 411 Pages 25.5 MB xz4 | Supporting & Related Material | 2017-12-07T05:00:00Z | 2017 | 12 | 2017-12-08T02:18:54Z | 0 | 0 | 0900006482c004e6 | ||||
| EPA-R06-OAR-2017-0192-0005 | EPA | None EPA-R06-OAR-2017-0192 | TX199.05 Addendum to EPA Technical Support Document, October 30, 2017. 57 pages xz4 | Supporting & Related Material | 2017-12-07T05:00:00Z | 2017 | 12 | 2017-12-08T02:18:44Z | 0 | 0 | 0900006482c004e5 | ||||
| EPA-R06-OAR-2017-0192-0004 | EPA | None EPA-R06-OAR-2017-0192 | TX199.04 Air Quality State Implementation Plans; Approval and Promulgation: Texas; Revisions to Emissions Banking and Trading Programs for Area and Mobile Sources, Final rule, 3 pages | Rule | 2017-12-07T05:00:00Z | 2017 | 12 | 2017-12-07T05:00:00Z | 2017-12-07T17:29:23Z | 2017-26342 | 0 | 0 | 0900006482ced543 | ||
| EPA-R06-OAR-2017-0192-0001 | EPA | None EPA-R06-OAR-2017-0192 | TX199.01 Air Quality State Implementation Plans; Approvals and Promulgation: Texas; Revisions to Emissions Banking and Trading Programs for Area and Mobile Sources. Parallel Processing Proposed Rule, 5 pages | Proposed Rule | 2017-06-08T04:00:00Z | 2017 | 6 | 2017-06-08T04:00:00Z | 2017-07-11T03:59:59Z | 2017-06-08T16:54:21Z | 2017-11906 | 0 | 0 | 09000064826aa779 | |
| EPA-R06-OAR-2017-0192-0002 | EPA | None EPA-R06-OAR-2017-0192 | TX199.02 EPA Technical Support Document: Revisions to the Texas Emissions Banking and Trading Programs, May 2017. 123 pages 1.0 MB x65 | Supporting & Related Material | 2017-06-08T04:00:00Z | 2017 | 6 | 2017-06-09T04:16:53Z | 0 | 0 | 0900006482541a15 | ||||
| EPA-R06-OAR-2017-0192-0003 | EPA | None EPA-R06-OAR-2017-0192 | TX199.03 Texas Request for Parallel Process Review of the Proposed Revisions to 30 TAC Chapter 101, General Air Quality Rules, Subchapter H, Division 1, Emission Credit Program, and Division 4, Discrete Emission Credit Program, and Revision to the State Implementation Plan (SIP), Texas Rule Project No. 2016-041-101-AI, submitted to EPA March 10, 2017 (TX-406, G-105, GH1,4). 187 Pages 1.0 MB x47 | Supporting & Related Material | 2017-06-08T04:00:00Z | 2017 | 6 | 2017-06-09T04:16:58Z | 0 | 0 | 0900006482541a16 |
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;