documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "EPA" and docket_id = "EPA-R05-OAR-2011-0347" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-2011-0347-0007 | EPA | None EPA-R05-OAR-2011-0347 | Re-Proposed Approval of the PM 2.5 Clean Data Determination for Milwaukee-Racine, Wisconsin | Proposed Rule | 2012-12-28T05:00:00Z | 2012 | 12 | 2012-12-28T05:00:00Z | 2013-01-29T04:59:59Z | 2013-04-26T01:04:21Z | 2012-31290 | 0 | 0 | 090000648119dc7a | |
| EPA-R05-OAR-2011-0347-0004 | EPA | None EPA-R05-OAR-2011-0347 | Extension of the Comment Period for the Proposed Approval of the PM 2.5 Clean Data Determination for Milwaukee-Racine, Wisconsin | Proposed Rule | 2012-05-23T04:00:00Z | 2012 | 5 | 2012-05-23T04:00:00Z | 2012-06-26T03:59:59Z | 2012-05-30T12:48:21Z | 2012-12509 | 0 | 0 | 0900006481019e66 | |
| EPA-R05-OAR-2011-0347-0003 | EPA | None EPA-R05-OAR-2011-0347 | Milwaukee PM2.5 Clean Data Determination: December 2011 EPA Technical Support Document | Supporting & Related Material | Technical Support Document | 2012-04-26T04:00:00Z | 2012 | 4 | 2012-04-26T19:22:26Z | 0 | 0 | 0900006480ffe1db | |||
| EPA-R05-OAR-2011-0347-0001 | EPA | None EPA-R05-OAR-2011-0347 | Proposed Approval of the PM 2.5 Clean Data Determination for Milwaukee-Racine, Wisconsin | Proposed Rule | 2012-04-24T04:00:00Z | 2012 | 4 | 2012-04-24T04:00:00Z | 2012-05-25T03:59:59Z | 2012-06-27T02:01:08Z | 2012-09811 | 0 | 0 | 0900006480ff72e9 | |
| EPA-R05-OAR-2011-0347-0002 | EPA | None EPA-R05-OAR-2011-0347 | PM 2.5 Clean Data Determination for Milwaukee-Racine, Wisconsin: 03/07/2011 submittal | Supporting & Related Material | State/Tribal Submittal | 2012-04-24T04:00:00Z | 2012 | 4 | 2012-04-24T13:18:29Z | 0 | 0 | 0900006480ff6b16 |
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;