documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-R06-OAR-2007-0314" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-R06-OAR-2007-0314-0033 | EPA | None EPA-R06-OAR-2007-0314 | OK006.33 Approval and Promulgation of Implementation Plans: Oklahoma; Interstate Transport of Pollution. 3 pages rzv | Rule | 2011-12-29T05:00:00Z | 2011 | 12 | 2011-12-29T05:00:00Z | 2011-12-29T17:06:10Z | 2011-33282 | 0 | 0 | 0900006480f8ac2f | ||
| EPA-R06-OAR-2007-0314-0030 | EPA | None EPA-R06-OAR-2007-0314 | OK006.30 August 15, 2006 EPA Memo “Guidance for State Implementation Plan (SIP) Submissions to Meet Current Outstanding Obligations Under Section 110(a)(2)(D)(i) for the 8-Hour Ozone and PM2.5 National Ambient Air Quality Standards”. | Supporting & Related Material | Report | 2011-12-20T05:00:00Z | 2011 | 12 | 2011-12-20T22:01:16Z | 0 | 0 | 0900006480f844db | |||
| EPA-R06-OAR-2007-0314-0031 | EPA | None EPA-R06-OAR-2007-0314 | OK006.31 September 25, 2009 EPA Memo “Guidance on SIP Elements Required Under Sections 110(a)(1) and (2) for the 2006 24-Hour Fine Particle (PM25) National Ambient Air Quality Standards (NAAQS)”. | Supporting & Related Material | Report | 2011-12-20T05:00:00Z | 2011 | 12 | 2011-12-20T22:01:39Z | 0 | 0 | 0900006480f844dc | |||
| EPA-R06-OAR-2007-0314-0032 | EPA | None EPA-R06-OAR-2007-0314 | OK006.32 August 8, 2011, Federal Register Notice “Federal Implementation Plans: Interstate Transport of Fine Particulate Matter and Ozone and Correction of SIP Approvals”. | Supporting & Related Material | Report | 2011-12-20T05:00:00Z | 2011 | 12 | 2011-12-20T22:02:00Z | 0 | 0 | 0900006480f844df | |||
| EPA-R06-OAR-2007-0314-0026 | EPA | None EPA-R06-OAR-2007-0314 | OK006.26 April 5, 2011 State Submittal: Certification of SIP Elements for the 2006 24-hour PM2.5 NAAQS under Clean Air Act Sections 110(a)(1)-(2). 13 pages r4e | Supporting & Related Material | State/Tribal Submittal | 2011-10-17T04:00:00Z | 2011 | 10 | 2011-10-17T14:40:16Z | 0 | 0 | 0900006480f50392 | |||
| EPA-R06-OAR-2007-0314-0025 | EPA | None EPA-R06-OAR-2007-0314 | OK006.25 Approval and Promulgation of Implementation Plans: Oklahoma; Interstate Transport of Pollution | Proposed Rule | 2011-10-17T04:00:00Z | 2011 | 10 | 2011-10-17T04:00:00Z | 2011-11-17T04:59:59Z | 2011-10-17T14:37:09Z | 2011-26763 | 0 | 0 | 0900006480f53fa8 |
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;