documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OAR-2006-0605" and posted_year = 2014 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), 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-0069 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Air Quality State Implementation Plans; Approvals and Promulgations: Prevention of Significant Deterioration for Particulate Matter Less than 2.5 Micrometers, etc. | Proposed Rule | 2014-09-16T04:00:00Z | 2014 | 9 | 2014-09-16T15:21:11Z | 2014-21973 | 0 | 0 | 090000648187416e | |||
| EPA-HQ-OAR-2006-0605-0067 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Petition Response Dated 8/28/14 to B. Manard, Special Deputy Attorney General, North Carolina Department of Justice from G. McCarthy, Administrator - Responds to a Petition Dated 12/23/13 | Supporting & Related Material | Letter | 2014-08-29T04:00:00Z | 2014 | 8 | 2014-08-29T19:01:26Z | 0 | 0 | 090000648184fc2a | |||
| EPA-HQ-OAR-2006-0605-0064 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Letter dated 8/28/14 From G. McCarthy, Administrator, US EPA Responding to J. Skvarla, III, North Carolina Department of Environment and Natural Resources 8/22/13 Letter | Supporting & Related Material | Letter | 2014-08-29T04:00:00Z | 2014 | 8 | 2014-08-29T18:37:57Z | 0 | 0 | 090000648184f958 | |||
| EPA-HQ-OAR-2006-0605-0062 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Memorandum to open docket for public access | Other | Memorandum to Open a Docket | 2014-08-29T04:00:00Z | 2014 | 8 | 2014-08-29T04:00:00Z | 2014-08-29T18:37:56Z | 0 | 0 | 0900006481850a00 | ||
| EPA-HQ-OAR-2006-0605-0065 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Petition for Reconsideration and Amended Rulemaking Dated 12/23/13 from the State of North Carolina to G. McCarthy, Administrator, US EPA | Supporting & Related Material | Letter | 2014-08-29T04:00:00Z | 2014 | 8 | 2014-08-29T18:37:57Z | 0 | 0 | 090000648184fc26 | |||
| EPA-HQ-OAR-2006-0605-0063 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Letter dated 8/22/13 from J. Skvarla, III, North Carolina Department of Environment and Natural Resources to G. McCarthy, Administrator, US EPA | Supporting & Related Material | Letter | 2014-08-29T04:00:00Z | 2014 | 8 | 2014-08-29T18:37:57Z | 0 | 0 | 090000648184f919 | |||
| EPA-HQ-OAR-2006-0605-0066 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Petition Response Dated 8/28/14 to R. Cooper, Attorney General, North Carolina Department of Justice from G. McCarthy, Administrator - Responds to a Petition Dated 12/23/13 | Supporting & Related Material | Letter | 2014-08-29T04:00:00Z | 2014 | 8 | 2014-08-29T19:01:14Z | 0 | 0 | 090000648184fc29 | |||
| EPA-HQ-OAR-2006-0605-0068 | EPA | Prevention of Significant Deterioration for PM2.5 - Increments, Significant Impact Levels and Significant Monitoring Concentrations EPA-HQ-OAR-2006-0605 | Petition Response Dated 8/28/14 to S. Conklin, Assistant Attorney General, North Carolina Department of Justice from G. McCarthy, Administrator - Responds to a Petition Dated 12/23/13 | Supporting & Related Material | Letter | 2014-08-29T04:00:00Z | 2014 | 8 | 2014-08-29T19:01:36Z | 0 | 0 | 090000648184fc2b |
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;