documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-R03-OAR-2012-0368" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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-R03-OAR-2012-0368-0011 | EPA | None EPA-R03-OAR-2012-0368 | Air Quality State Implementation Plans; Approval and Promulgation: West Virginia; Redesignation Request for the Wheeling, WV-OH 1997 Annual Fine Particulate Matter Nonattainment Area to Attainment and Approval, etc. | Rule | 2013-09-30T04:00:00Z | 2013 | 9 | 2013-09-30T17:10:16Z | 2013-23691 | 0 | 0 | 09000064814406ee | |||
| EPA-R03-OAR-2012-0368-0007 | EPA | None EPA-R03-OAR-2012-0368 | Supplemental Technical Support Document | Supporting & Related Material | Technical Support Document | 2013-07-24T04:00:00Z | 2013 | 7 | 2013-08-26T19:30:33Z | 0 | 0 | 090000648132cef1 | |||
| EPA-R03-OAR-2012-0368-0008 | EPA | None EPA-R03-OAR-2012-0368 | Guidance Document - Procedures for Processing Requests to Designate Areas to Attainment | Supporting & Related Material | Guidance | 2013-07-24T04:00:00Z | 2013 | 7 | 2013-08-26T19:30:33Z | 0 | 0 | 090000648132cef2 | |||
| EPA-R03-OAR-2012-0368-0009 | EPA | None EPA-R03-OAR-2012-0368 | Guidance Document - SIP Requirements for Areas Submitting Requests for Redesignation | Supporting & Related Material | Guidance | 2013-07-24T04:00:00Z | 2013 | 7 | 2013-08-26T19:30:34Z | 0 | 0 | 090000648132cef3 | |||
| EPA-R03-OAR-2012-0368-0006 | EPA | None EPA-R03-OAR-2012-0368 | Air Quality Implementation Plans; Approval and Promulgation: West Virginia; Redesignation of the West Virginia Portion of the Wheeling, WV-OH 1997 Annual Fine Particulate Matter Nonattainment Area, etc. | Proposed Rule | 2013-07-24T04:00:00Z | 2013 | 7 | 2013-07-24T04:00:00Z | 2013-08-24T03:59:59Z | 2013-08-26T19:30:34Z | 2013-17704 | 0 | 0 | 0900006481379e18 | |
| EPA-R03-OAR-2012-0368-0010 | EPA | None EPA-R03-OAR-2012-0368 | Guidance Document - Part D NSR Requirements for Areas Requesting Redesignation to Attainment | Supporting & Related Material | Guidance | 2013-07-24T04:00:00Z | 2013 | 7 | 2013-08-26T19:30:34Z | 0 | 0 | 090000648132e16b |
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;