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-2012-0434" and posted_year = 2015 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-2012-0434-0005 | EPA | None EPA-R06-OAR-2012-0434 | LA039.05 Louisiana 2007 General Rules Update SIP Revision -- Withdrawal of Revisions to LAC 33:III, Chapter 15, Emission Standards for Sulfur Dioxide, submitted to EPA October 2015 (LA-106). 269 pages 9.0 MB vxu | Supporting & Related Material | Report | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:36:15Z | 0 | 0 | 090000648106003f | |||
| EPA-R06-OAR-2012-0434-0004 | EPA | None EPA-R06-OAR-2012-0434 | LA039.04 Louisiana Revision to LAC 33:III, Chapters 7 and 13, RE: 2008 to 2010 Miscellaneous Rules SIP Revision, submitted to EPA August 29, 2013 (LA-128). 59 pages 1.8 MB u99 | Supporting & Related Material | Report | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:36:34Z | 0 | 0 | 090000648106003e | |||
| EPA-R06-OAR-2012-0434-0001 | EPA | None EPA-R06-OAR-2012-0434 | LA039.01 Air Quality State Implementation Plans; Approval and Promulgation; Louisiana; Revisions to Air Pollution Control Rules, Proposed Rule, 4 pages. This Federal Register action begins near the bottom of the third column. | Proposed Rule | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-05T05:00:00Z | 2015-12-08T04:59:59Z | 2015-11-05T18:51:39Z | 2015-28277 | 0 | 0 | 0900006481d145b0 | |
| EPA-R06-OAR-2012-0434-0002 | EPA | None EPA-R06-OAR-2012-0434 | LA039.02 EPA Technical Support Document, 50 pages vy2 | Supporting & Related Material | Report | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:36:22Z | 0 | 0 | 090000648106003c | |||
| EPA-R06-OAR-2012-0434-0003 | EPA | None EPA-R06-OAR-2012-0434 | LA039.03 Louisiana Revisions to LAC 33:III, Chapters 1, 2, 5, 6, 9, 11, 13, 14, 15, 21, 22, 23, and 25, RE: 2007 General Rules Update SIP Revision, submitted to EPA August 14, 2009 (LA-106). 363 pages 15.7 MB u99 | Supporting & Related Material | Report | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-06T01:36:28Z | 0 | 0 | 090000648106003d |
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;