documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-R08-OAR-2011-0400" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 7
| 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-R08-OAR-2011-0400-0011 | EPA | None EPA-R08-OAR-2011-0400 | 2010 Regional SO2 Emissions and Milestone Report | Supporting & Related Material | Report | 2013-11-18T05:00:00Z | 2013 | 11 | 2013-11-18T17:19:59Z | 0 | 0 | 0900006481487525 | |||
| EPA-R08-OAR-2011-0400-0010 | EPA | None EPA-R08-OAR-2011-0400 | Approvals and Promulgations of State Implementation Plans: Wyoming; Regional Haze Rule Requirements for Mandatory Class I Areas | Rule | 2012-12-12T05:00:00Z | 2012 | 12 | 2012-12-12T05:00:00Z | 2012-12-12T16:44:13Z | 2012-29985 | 0 | 0 | 0900006481188790 | ||
| EPA-R08-OAR-2011-0400-0004 | EPA | None EPA-R08-OAR-2011-0400 | May 7, 2008; Revised Final 309 WRAP Technical Support Document | Supporting & Related Material | Report | 2012-05-29T04:00:00Z | 2012 | 5 | 2012-05-29T13:21:13Z | 0 | 0 | 0900006480ffe14e | |||
| EPA-R08-OAR-2011-0400-0005 | EPA | None EPA-R08-OAR-2011-0400 | February 28, 2011 TSD for Technical Products Prepared by the WRAP in Support of Western Regional Haze Plans | Supporting & Related Material | Report | 2012-05-29T04:00:00Z | 2012 | 5 | 2012-05-29T13:21:14Z | 0 | 0 | 09000064810057e1 | |||
| EPA-R08-OAR-2011-0400-0002 | EPA | None EPA-R08-OAR-2011-0400 | January 7, 2011 WY Regional Haze Submittal: Addressing Regional Haze Visibility Protection for the Mandatory Federal Class I Areas Required under 40 CFR 51.309 | Supporting & Related Material | Report | 2012-05-29T04:00:00Z | 2012 | 5 | 2012-05-29T13:21:12Z | 0 | 0 | 0900006480ffd473 | |||
| EPA-R08-OAR-2011-0400-0003 | EPA | None EPA-R08-OAR-2011-0400 | 309 Wyoming Regional Haze SIP Technical Support Document | Supporting & Related Material | Report | 2012-05-29T04:00:00Z | 2012 | 5 | 2012-05-29T13:21:13Z | 0 | 0 | 0900006480ffd474 | |||
| EPA-R08-OAR-2011-0400-0001 | EPA | None EPA-R08-OAR-2011-0400 | Approvals and Promulgations of State Implementation Plans: State of Wyoming; Regional Haze Rule Requirements for Mandatory Class I Areas | Proposed Rule | 2012-05-24T04:00:00Z | 2012 | 5 | 2012-05-24T04:00:00Z | 2012-07-24T03:59:59Z | 2012-07-25T02:02:00Z | 2012-12643 | 0 | 0 | 090000648101b3f9 |
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;