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-2009-0805" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, 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-R05-OAR-2009-0805-0043 | EPA | None EPA-R05-OAR-2009-0805 | Final Disapproval of Wisconsin Infrastructure SIP with Respect to Oxides of Nitrogen as a Precursor to Ozone Provisions for the 2006 PM2.5 NAAQS | Rule | 2015-12-10T05:00:00Z | 2015 | 12 | 2015-12-10T05:00:00Z | 2015-12-10T16:00:48Z | 2015-31062 | 0 | 0 | 0900006481d9ac08 | ||
| EPA-R05-OAR-2009-0805-0042 | EPA | None EPA-R05-OAR-2009-0805 | Proposed Disapproval of Wisconsin Infrastructure SIP with Respect to Oxides of Nitrogen as a Precursor to Ozone Provisions for the 2006 PM2.5 NAAQS | Proposed Rule | 2015-09-10T04:00:00Z | 2015 | 9 | 2015-09-10T04:00:00Z | 2015-10-14T03:59:59Z | 2015-10-16T01:30:40Z | 2015-22863 | 0 | 0 | 0900006481c650dd | |
| EPA-R05-OAR-2009-0805-0041 | EPA | None EPA-R05-OAR-2009-0805 | Final Disapproval of the Illinois Infrastructure SIP State Board Requirements for the 2006 PM2.5 and 2008 Ozone NAAQS | Rule | 2015-08-26T04:00:00Z | 2015 | 8 | 2015-08-26T04:00:00Z | 2015-08-26T14:16:26Z | 2015-21010 | 0 | 0 | 0900006481c3a7f7 | ||
| EPA-R05-OAR-2009-0805-0040 | EPA | None EPA-R05-OAR-2009-0805 | Direct Final Approval of the Michigan PSD and Wisconsin Visibility 2006 PM2.5 NAAQS Infrastructure SIP Requirements | Rule | 2015-08-24T04:00:00Z | 2015 | 8 | 2015-08-24T04:00:00Z | 2015-09-24T03:59:59Z | 2015-08-24T17:24:13Z | 2015-20771 | 0 | 0 | 0900006481c34461 | |
| EPA-R05-OAR-2009-0805-0039 | EPA | None EPA-R05-OAR-2009-0805 | Proposed Approval of the Michigan PSD and Wisconsin Visibility 2006 PM2.5 NAAQS Infrastructure SIP Requirements | Proposed Rule | 2015-08-24T04:00:00Z | 2015 | 8 | 2015-08-24T04:00:00Z | 2015-09-24T03:59:59Z | 2015-08-24T17:23:26Z | 2015-20769 | 0 | 0 | 0900006481c343fb | |
| EPA-R05-OAR-2009-0805-0038 | EPA | None EPA-R05-OAR-2009-0805 | Proposed Disapproval of the Illinois Infrastructure SIP State Board Requirements for the 2006 PM2.5 and 2008 Ozone NAAQS | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-06-16T04:00:00Z | 2015 | 6 | 2015-06-16T04:00:00Z | 2015-07-14T03:59:59Z | 2015-06-16T12:17:24Z | 2015-14348 | 0 | 0 | 0900006481b359a1 |
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;