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-2008-0699" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-HQ-OAR-2008-0699-0014 | EPA | Review of the National Ambient Air Quality Standards for Ozone EPA-HQ-OAR-2008-0699 | Smith, R.L., et al. Reassessing the Relationship between Ozone and Short-term Mortality in U.S. Urban Communities. Inhalation Toxicology, 2009; 29 (S2): 37-61 | Supporting & Related Material | Publication - Copyrighted Materials | 2009-11-20T05:00:00Z | 2009 | 11 | 2011-10-27T13:21:37Z | 0 | 0 | 0900006480a5b038 | |||
| EPA-HQ-OAR-2008-0699-0013 | EPA | Review of the National Ambient Air Quality Standards for Ozone EPA-HQ-OAR-2008-0699 | McClellan, R. O., et al. Critical Considerations in Evaluating Scientific Evidence of Health Effects of Ambient Ozone: A Conference Report Inhalation Toxicology, 2009; 21 (S2): 1-36 | Supporting & Related Material | Publication - Copyrighted Materials | 2009-11-20T05:00:00Z | 2009 | 11 | 2011-10-27T13:20:34Z | 0 | 0 | 0900006480a5b037 | |||
| EPA-HQ-OAR-2008-0699-0009 | EPA | Review of the National Ambient Air Quality Standards for Ozone EPA-HQ-OAR-2008-0699 | Integrated Review Plan for the Ozone National Ambient Air Quality Standards Review. External Review Draft. September 2009. EPA 452/D-09-001. | Supporting & Related Material | Publication - USEPA | 2009-11-10T05:00:00Z | 2009 | 11 | 2009-11-10T16:12:41Z | 0 | 0 | 0900006480a547a7 | |||
| EPA-HQ-OAR-2008-0699-0005 | EPA | Review of the National Ambient Air Quality Standards for Ozone EPA-HQ-OAR-2008-0699 | Review of the National Ambient Air Quality Standards for Ozone | Notice | Federal Register Document | 2009-10-19T04:00:00Z | 2009 | 10 | 2009-10-19T04:00:00Z | 2009-11-07T04:59:59Z | 2009-10-19T15:34:48Z | E9-24815 | 0 | 0 | 0900006480a45121 |
| EPA-HQ-OAR-2008-0699-0004 | EPA | Review of the National Ambient Air Quality Standards for Ozone EPA-HQ-OAR-2008-0699 | Letter to Dan Fauth, Colorado, from Stephen Page, USEPA | Supporting & Related Material | Letter, Memorandum, Email | 2009-10-09T04:00:00Z | 2009 | 10 | 2009-10-09T19:07:23Z | 0 | 0 | 0900006480a3dfb3 | |||
| EPA-HQ-OAR-2008-0699-0003 | EPA | Review of the National Ambient Air Quality Standards for Ozone EPA-HQ-OAR-2008-0699 | Letter from Dan Fauth, Durango, CO to Administrator Lisa Jackson (2/20/2009) | Supporting & Related Material | Letter, Memorandum, Email | 2009-04-01T04:00:00Z | 2009 | 4 | 2009-04-01T13:29:08Z | 0 | 0 | 0900006480939e0e |
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;