documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OAR-2006-0605" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2006-0605-0060 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Prevention of Significant Deterioration (PSD) for Particulate Matter Less Than 2.5 Micrometers (PM2.5): Increments, Significant Impact Levels and Significant Monitoring Concentration (SMC) | Rule | Federal Register Document | 2010-10-20T04:00:00Z | 2010 | 10 | 2011-06-11T16:02:21Z | 2010-25132 | 0 | 0 | 0900006480b72cdc | ||
| EPA-HQ-OAR-2006-0605-0058 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Formal OMB Submittal Package - Revisions Made in Response to OMB Comments to Draft Final of Prevention of Significant Deterioration (PSD) for Particulate Matter Less Than 2.5 Micrometers (PM2.5) – Increments, Significant Impact Levels (SILs) and Significant Monitoring Concentration (SMC). March 18, 2010 | Supporting & Related Material | Office of Management and Budget (OMB) | 2010-09-30T04:00:00Z | 2010 | 9 | 2011-06-11T16:02:21Z | 0 | 0 | 0900006480b08527 | |||
| EPA-HQ-OAR-2006-0605-0056 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Memorandum from Crumpler, D., USEPA/AQAD/AAMG, to Rao, R., USEPA/AQPD/NSRG, on PSD Monitoring De Minimis Concentration for PM2.5; March 12, 2009 | Supporting & Related Material | Letter, Memorandum, Email | 2010-09-30T04:00:00Z | 2010 | 9 | 2010-09-30T17:13:24Z | 0 | 0 | 0900006480a4c8bb | |||
| EPA-HQ-OAR-2006-0605-0059 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Prevention of Significant Deterioration (PSD) for Particulate Matter Less Than 2.5 Micrometers (PM2.5) - Increments, Significant Impact Levels (SILs) and Significant Monitoring Concentration (SMC) - Response to Comments | Supporting & Related Material | Comment Response | 2010-09-30T04:00:00Z | 2010 | 9 | 2010-09-30T17:13:33Z | 0 | 0 | 0900006480b473fa | |||
| EPA-HQ-OAR-2006-0605-0057 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Formal OMB Submittal Package - Draft Final of Prevention of Significant Deterioration (PSD) for Particulate Matter Less Than 2.5 Micrometers (PM2.5) – Increments, Significant Impact Levels (SILs) and Significant Monitoring Concentration (SMC) submitted on December 28, 2009 | Supporting & Related Material | Office of Management and Budget (OMB) | 2010-09-30T04:00:00Z | 2010 | 9 | 2011-06-11T16:02:20Z | 0 | 0 | 0900006480a7e717 | |||
| EPA-HQ-OAR-2006-0605-0055 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Memorandum from Rehme, K. A., USEPA/EMSL/QAD/MSB, to Peters, W., USEPA/OAQPS/CPDD, on PSD Monitoring; May 20, 1980 | Supporting & Related Material | Letter, Memorandum, Email | 2010-09-30T04:00:00Z | 2010 | 9 | 2010-09-30T17:13:22Z | 0 | 0 | 0900006480a4c889 |
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;