documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-R01-OAR-2008-0117" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-R01-OAR-2008-0117-0030 | EPA | None EPA-R01-OAR-2008-0117 | Massachusetts' Technical Revisions to Incorporate Minor Changes in Base Year and Projection Year Inventories. | Supporting & Related Material | Letter, Memorandum, Email | 2010-09-20T04:00:00Z | 2010 | 9 | 2010-09-20T14:22:53Z | 0 | 0 | 0900006480b4dc6b | |||
| EPA-R01-OAR-2008-0117-0025 | EPA | None EPA-R01-OAR-2008-0117 | Approvals and Promulgations of Air Quality Implementation Plans: Connecticut, et al.; Reasonable Further Progress Plans and 2002 Base Year Emission Inventories | Proposed Rule | Federal Register Document | 2010-09-20T04:00:00Z | 2010 | 9 | 2010-09-20T04:00:00Z | 2010-10-21T03:59:59Z | 2010-09-20T14:12:00Z | 2010-23402 | 0 | 0 | 0900006480b53283 |
| EPA-R01-OAR-2008-0117-0032 | EPA | None EPA-R01-OAR-2008-0117 | Federal Register Proposed Rule As Signed By the Acting Regional Administrator. | Supporting & Related Material | Letter, Memorandum, Email | 2010-09-20T04:00:00Z | 2010 | 9 | 2010-09-20T14:23:24Z | 0 | 0 | 0900006480b4dc6f | |||
| EPA-R01-OAR-2008-0117-0029 | EPA | None EPA-R01-OAR-2008-0117 | Connecticut's Revised RFP Calculations Including Banked Emission Reduction Credits. | Supporting & Related Material | Letter, Memorandum, Email | 2010-09-20T04:00:00Z | 2010 | 9 | 2010-09-20T14:22:36Z | 0 | 0 | 0900006480b4dc69 | |||
| EPA-R01-OAR-2008-0117-0028 | EPA | None EPA-R01-OAR-2008-0117 | Addendum to EPA's Technical Support Document for the CT, MA, and RI RFP Plans. Evaluation of Submittals Made To Account for Emissions Banking and Trading Programs. | Supporting & Related Material | Letter, Memorandum, Email | 2010-09-20T04:00:00Z | 2010 | 9 | 2010-09-20T14:22:12Z | 0 | 0 | 0900006480b4dc67 | |||
| EPA-R01-OAR-2008-0117-0031 | EPA | None EPA-R01-OAR-2008-0117 | Rhode Island's Revised Chapter 4 of the "Rhode Island Attainment Plan for the 8-Hour Ozone National Ambient Air Quality Standard" (Attainment Plan). | Supporting & Related Material | Letter, Memorandum, Email | 2010-09-20T04:00:00Z | 2010 | 9 | 2010-09-20T14:23:08Z | 0 | 0 | 0900006480b4dc6d | |||
| EPA-R01-OAR-2008-0117-0026 | EPA | None EPA-R01-OAR-2008-0117 | Connecticut Department of Environmental Protection Cover Letter for 8-Hour Ozone Attainment Demonstration Revised RFP Calculations Including Banked Emission Reduction Credits. | Supporting & Related Material | 2010-09-20T04:00:00Z | 2010 | 9 | 2010-09-20T14:21:15Z | 0 | 0 | 0900006480a4fdee | ||||
| EPA-R01-OAR-2008-0117-0027 | EPA | None EPA-R01-OAR-2008-0117 | Connecticut's 8-Hour Ozone Attainment Demonstration Revised Reasonable Further Progress Calculations to Account for Banked NOx Emission Reduction Credits. | Supporting & Related Material | 2010-09-20T04:00:00Z | 2010 | 9 | 2010-09-20T14:21:53Z | 0 | 0 | 0900006480a4fdf1 |
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;