documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "EPA", docket_id = "EPA-HQ-OAR-2007-0562" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, last_modified, posted_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-HQ-OAR-2007-0562-0571 | EPA | Area Designations for the 2006 24-Hour PM 2.5 National Ambient Air Quality Standards (NAAQS) EPA-HQ-OAR-2007-0562 | USEPA Air Quality System Preliminary Design Value Report and map titled 2009-2011 Design Values for the 2006 24-Hour Fine Particulate Matter (PM2.5) National Ambient Air Quality Standards | Supporting & Related Material | Data | 2012-10-26T04:00:00Z | 2012 | 10 | 2012-10-26T14:08:23Z | 0 | 0 | 0900006481106e9d | |||
| EPA-HQ-OAR-2007-0562-0574 | EPA | Area Designations for the 2006 24-Hour PM 2.5 National Ambient Air Quality Standards (NAAQS) EPA-HQ-OAR-2007-0562 | Email dated September 4, 2012 from Colleen McKaughan, USEPA Region 9 Associate Director Air Division, to Ginger Vagenas and Jefferson Wehling, USEPA Region 9, documenting conversation with Robert Palmquist, Ak-Chin Attorney, confirming that no additional tribal consultation is necessary. Includes related email from Brenda Ball, Ak-Chin environmental representative | Supporting & Related Material | 2012-10-26T04:00:00Z | 2012 | 10 | 2012-10-26T14:08:24Z | 0 | 0 | 0900006481107030 | ||||
| EPA-HQ-OAR-2007-0562-0572 | EPA | Area Designations for the 2006 24-Hour PM 2.5 National Ambient Air Quality Standards (NAAQS) EPA-HQ-OAR-2007-0562 | Memorandum from Colleen McKaughan, Associate Director, Air Division, Region 9 to File regarding Confirmation from Gila River Indian Community that Consultation Regarding 2006 24-hr PM2.5 Designation is Complete (August 21, 2012) | Supporting & Related Material | Memorandum | 2012-10-26T04:00:00Z | 2012 | 10 | 2012-10-26T14:10:25Z | 0 | 0 | 090000648110702e | |||
| EPA-HQ-OAR-2007-0562-0573 | EPA | Area Designations for the 2006 24-Hour PM 2.5 National Ambient Air Quality Standards (NAAQS) EPA-HQ-OAR-2007-0562 | Memorandum from Maeve Foley, USEPA Region 9 Grants & Program Integration Office to File regarding Communication with Brenda Ball about Potential Consultation with Ak-Chin Regarding 2006 24-hr PM2.5 Designation (August 21, 2012) | Supporting & Related Material | Memorandum | 2012-10-26T04:00:00Z | 2012 | 10 | 2012-10-26T14:08:23Z | 0 | 0 | 090000648110702f | |||
| EPA-HQ-OAR-2007-0562-0570 | EPA | Area Designations for the 2006 24-Hour PM 2.5 National Ambient Air Quality Standards (NAAQS) EPA-HQ-OAR-2007-0562 | Memorandum titled, Data Summary for Cowtown Monitor dated August 14, 2012, from Michael Flagg, USEPA Region 9 Air Quality Analysis Office, to Ginger Vagenas, USEPA Region 9 Air Planning Office | Supporting & Related Material | Memorandum | 2012-10-26T04:00:00Z | 2012 | 10 | 2012-10-26T14:08:23Z | 0 | 0 | 0900006481106e9c | |||
| EPA-HQ-OAR-2007-0562-0569 | EPA | Area Designations for the 2006 24-Hour PM 2.5 National Ambient Air Quality Standards (NAAQS) EPA-HQ-OAR-2007-0562 | Additional Air Quality Designations for the 2006 24-Hour Fine Particle National Ambient Air Quality Standards; Supplemental Amendments, Final Rule | Rule | Final Rule | 2012-10-26T04:00:00Z | 2012 | 10 | 2012-11-01T14:52:37Z | 2012-26405 | 0 | 0 | 0900006481151b23 |
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;