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-2003-0061" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2003-0061-0773 | EPA | National PM-2.5 Designations EPA-HQ-OAR-2003-0061 | Pollution roses with pg numbers same as file -0527-pages 1-197 | Supporting & Related Material | Data | 2008-11-21T05:00:00Z | 2008 | 11 | 2008-11-21T14:28:56Z | 0 | 0 | 090000648079d164 | |||
| EPA-HQ-OAR-2003-0061-0772 | EPA | National PM-2.5 Designations EPA-HQ-OAR-2003-0061 | Letter from West Virginia Department of Environmental Protection (WVDEP) to EPA re: power plants June 3, 2004 | Supporting & Related Material | Letter, Memorandum, Email | 2008-11-05T05:00:00Z | 2008 | 11 | 2008-11-05T19:53:07Z | 0 | 0 | 0900006480792bdc | |||
| EPA-HQ-OAR-2003-0061-0771 | EPA | National PM-2.5 Designations EPA-HQ-OAR-2003-0061 | Georgia Petition for Reconsideration for Chattanooga Cover Letter June 10 2005 goes with -0728 thru -0728.11 | Supporting & Related Material | Petition | 2008-11-05T05:00:00Z | 2008 | 11 | 2008-11-05T19:53:03Z | 0 | 0 | 0900006480792bb4 | |||
| EPA-HQ-OAR-2003-0061-0768 | EPA | National PM-2.5 Designations EPA-HQ-OAR-2003-0061 | EPA letter to Virginia w/attach 062904 | Supporting & Related Material | Letter, Memorandum, Email | 2008-08-19T04:00:00Z | 2008 | 8 | 2008-08-19T17:11:17Z | 0 | 0 | 09000064806cc432 | |||
| EPA-HQ-OAR-2003-0061-0769 | EPA | National PM-2.5 Designations EPA-HQ-OAR-2003-0061 | EPA letter to West Virginia w/ attachment 062904 | Supporting & Related Material | Letter, Memorandum, Email | 2008-08-19T04:00:00Z | 2008 | 8 | 2008-08-19T17:11:20Z | 0 | 0 | 09000064806cc45f | |||
| EPA-HQ-OAR-2003-0061-0770 | EPA | National PM-2.5 Designations EPA-HQ-OAR-2003-0061 | Letter from Stephanie Timmermeyer, Cabinet Secretary, West Virginia Departmnet of Environmental Protection (WVDEP) to Donald Welsh, EPA Region 3 - August 31, 2004 | Supporting & Related Material | Letter, Memorandum, Email | 2008-08-19T04:00:00Z | 2008 | 8 | 2008-08-19T17:38:23Z | 0 | 0 | 09000064806b5e8b |
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;