documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-R05-OAR-2011-0468" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, last_modified, 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-R05-OAR-2011-0468-0011 | EPA | None EPA-R05-OAR-2011-0468 | Final Approval of the Huntington-Ashland, Ohio PM2.5 redesignation and maintenance plan | Rule | 2012-12-31T05:00:00Z | 2012 | 12 | 2012-12-31T05:00:00Z | 2012-12-31T18:44:09Z | 2012-31276 | 0 | 0 | 09000064811a045e | ||
| EPA-R05-OAR-2011-0468-0009 | EPA | None EPA-R05-OAR-2011-0468 | Ohio PM2.5 Nonattainment Areas SIP Appendix A - 2005 Base Year SIP Inventory | Supporting & Related Material | State/Tribal Submittal | 2012-12-17T05:00:00Z | 2012 | 12 | 2012-12-17T21:16:41Z | 0 | 0 | 09000064811900d7 | |||
| EPA-R05-OAR-2011-0468-0010 | EPA | None EPA-R05-OAR-2011-0468 | Air Quality Modeling Final Rule Technical Support Document, Appendix B: 2003-2007 Base Period and Projected 2012 and 2014 Design Values for Monitoring Sites in the Eastern Modeling Domain | Supporting & Related Material | Technical Support Document | 2012-12-17T05:00:00Z | 2012 | 12 | 2012-12-17T21:16:42Z | 0 | 0 | 09000064811900d8 | |||
| EPA-R05-OAR-2011-0468-0008 | EPA | None EPA-R05-OAR-2011-0468 | UNITED STATES OF AMERICA, Plaintiff, v. E.J. DU PONT DE NEMOURS & CO., Defendant, Civil Action No. [________] CONSENT DECREE | Supporting & Related Material | Decree | 2012-12-12T05:00:00Z | 2012 | 12 | 2012-12-12T13:58:16Z | 0 | 0 | 0900006481187d24 | |||
| EPA-R05-OAR-2011-0468-0007 | EPA | None EPA-R05-OAR-2011-0468 | Sierra Club and Marilyn Wall v. The Dayton Power and Light Company, Duke Energy Ohio, Inc., and Columbus Southern Power Co., Civil Action No. 2: 04-cv-905 | Supporting & Related Material | Decree | 2012-12-12T05:00:00Z | 2012 | 12 | 2012-12-12T13:58:16Z | 0 | 0 | 0900006481187d23 | |||
| EPA-R05-OAR-2011-0468-0006 | EPA | None EPA-R05-OAR-2011-0468 | United States of America and State Of New York, et al., v. American Electric Power Service Corp., et al., No. C2-99-1250 and 1182 (consolidated) | Supporting & Related Material | Decree | 2012-12-12T05:00:00Z | 2012 | 12 | 2012-12-12T13:58:15Z | 0 | 0 | 0900006481187d22 |
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;