documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where agency_id = "EPA", docket_id = "EPA-R09-OAR-2008-0454" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-R09-OAR-2008-0454-0011 | EPA | None EPA-R09-OAR-2008-0454 | SRP-NGS Modeling Protocol 9/07 | Supporting & Related Material | 2008-08-28T04:00:00Z | 2008 | 8 | 2008-08-28T23:35:51Z | 0 | 0 | 09000064806e3587 | ||||
| EPA-R09-OAR-2008-0454-0012 | EPA | None EPA-R09-OAR-2008-0454 | Letter from Kevin Wanttaja (SRP) to Deborah Jordan (EPA) re: Best Available Retrofit Technology (BART) Analysis – Cost Information Navajo Generating Station | Supporting & Related Material | 2008-08-28T04:00:00Z | 2008 | 8 | 2008-08-28T23:35:52Z | 0 | 0 | 09000064806e35cb | ||||
| EPA-R09-OAR-2008-0454-0009 | EPA | None EPA-R09-OAR-2008-0454 | EPA Follow up Letter to SRP 7-1-08 | Supporting & Related Material | 2008-07-11T04:00:00Z | 2008 | 7 | 2008-07-11T22:04:20Z | 0 | 0 | 0900006480669c08 | ||||
| EPA-R09-OAR-2008-0454-0010 | EPA | None EPA-R09-OAR-2008-0454 | EPA Follow up letter to APS 7-1-08 | Supporting & Related Material | 2008-07-11T04:00:00Z | 2008 | 7 | 2008-07-11T22:04:20Z | 0 | 0 | 0900006480669c1e | ||||
| EPA-R09-OAR-2008-0454-0008 | EPA | None EPA-R09-OAR-2008-0454 | Letter from APS_fugitive emission sources 6-10-08 | Supporting & Related Material | 2008-07-11T04:00:00Z | 2008 | 7 | 2008-07-11T22:04:19Z | 0 | 0 | 0900006480669c2e | ||||
| EPA-R09-OAR-2008-0454-0007 | EPA | None EPA-R09-OAR-2008-0454 | APS Response (5-28-08) to EPA Request for Additional Information | Supporting & Related Material | 2008-06-11T04:00:00Z | 2008 | 6 | 2008-06-11T21:27:21Z | 0 | 0 | 090000648061fc0d | ||||
| EPA-R09-OAR-2008-0454-0005 | EPA | None EPA-R09-OAR-2008-0454 | Comment letter from Colorado | Other | 2008-05-30T04:00:00Z | 2008 | 5 | 2008-05-30T04:00:00Z | 2008-05-30T17:53:52Z | 0 | 0 | 09000064805f963c | |||
| EPA-R09-OAR-2008-0454-0004 | EPA | None EPA-R09-OAR-2008-0454 | EPA Additional information request to APS 4-29-08 | Supporting & Related Material | 2008-05-30T04:00:00Z | 2008 | 5 | 2008-05-30T17:53:51Z | 0 | 0 | 09000064805d5e65 | ||||
| EPA-R09-OAR-2008-0454-0002 | EPA | None EPA-R09-OAR-2008-0454 | BART Analysis for APS Four Corners - Table of Contents | Supporting & Related Material | 2008-05-30T04:00:00Z | 2008 | 5 | 2008-05-30T17:53:47Z | 0 | 0 | 0900006480601aef | ||||
| EPA-R09-OAR-2008-0454-0003 | EPA | None EPA-R09-OAR-2008-0454 | EPA Additional information request to SRP 4-29-08 | Supporting & Related Material | 2008-05-30T04:00:00Z | 2008 | 5 | 2008-05-30T17:53:50Z | 0 | 0 | 09000064805d5e64 | ||||
| EPA-R09-OAR-2008-0454-0001 | EPA | None EPA-R09-OAR-2008-0454 | BART Analysis for Navajo Generating Station | Supporting & Related Material | 2008-05-30T04:00:00Z | 2008 | 5 | 2008-05-30T17:53:46Z | 0 | 0 | 09000064805d02e9 | ||||
| EPA-R09-OAR-2008-0454-0006 | EPA | None EPA-R09-OAR-2008-0454 | Comment Letter from Arizona | Other | 2008-05-30T04:00:00Z | 2008 | 5 | 2008-05-30T04:00:00Z | 2008-05-30T17:53:52Z | 0 | 0 | 0900006480601bc9 |
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;