documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-R03-OAR-2014-0475" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date (date), comment_end_date (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-R03-OAR-2014-0475-0006 | EPA | None EPA-R03-OAR-2014-0475 | Air Quality State Implementation Plans; Approval and Promulgation: Pennsylvania; Allegheny County's Adoption of Control Techniques Guidelines for Four Industry Categories for Control of Volatile Organic Compound Emissions | Proposed Rule | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-10T05:00:00Z | 2015-12-11T04:59:59Z | 2015-11-10T14:06:58Z | 2015-28645 | 0 | 0 | 0900006481d2de6b | |
| EPA-R03-OAR-2014-0475-0009 | EPA | None EPA-R03-OAR-2014-0475 | State Submittal - Transmittal Letter for November 15, 2013 SIP Revision | Supporting & Related Material | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-11T02:08:22Z | 0 | 0 | 0900006481c7cdbf | ||||
| EPA-R03-OAR-2014-0475-0010 | EPA | None EPA-R03-OAR-2014-0475 | State Submittal - November 15, 2015 SIP Revision | Supporting & Related Material | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-11T02:08:40Z | 0 | 0 | 0900006481c7cdc0 | ||||
| EPA-R03-OAR-2014-0475-0013 | EPA | None EPA-R03-OAR-2014-0475 | Technical Support Document for the November 15, 2013 SIP Revision Submittal | Supporting & Related Material | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-11T02:09:23Z | 0 | 0 | 0900006481c7e3c9 | ||||
| EPA-R03-OAR-2014-0475-0007 | EPA | None EPA-R03-OAR-2014-0475 | State Submittal - Transmittal Letter for Supplement (Signed September 9, 2015) | Supporting & Related Material | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-11T02:07:53Z | 0 | 0 | 0900006481c7cd09 | ||||
| EPA-R03-OAR-2014-0475-0008 | EPA | None EPA-R03-OAR-2014-0475 | State Submittal - Supplement (dated Sept. 9, 2015) to November 15, 2013 SIP Revision | Supporting & Related Material | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-11T02:08:09Z | 0 | 0 | 0900006481c7cd0a | ||||
| EPA-R03-OAR-2014-0475-0011 | EPA | None EPA-R03-OAR-2014-0475 | Letter from Allegheny County Pertaining to SIP Revision Supplement | Supporting & Related Material | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-11T02:08:54Z | 0 | 0 | 0900006481c7cdc1 | ||||
| EPA-R03-OAR-2014-0475-0014 | EPA | None EPA-R03-OAR-2014-0475 | Completeness Letter - AC CTG supplemental | Supporting & Related Material | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-11T02:09:54Z | 0 | 0 | 0900006481c8caf9 | ||||
| EPA-R03-OAR-2014-0475-0012 | EPA | None EPA-R03-OAR-2014-0475 | Federal Register Notice Conditionally Approving November 15, 2013 SIP Revision | Supporting & Related Material | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-11T02:09:08Z | 0 | 0 | 0900006481c7cdc2 |
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;