documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2008-0802" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, last_modified, 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-OPP-2008-0802-0003 | EPA | None EPA-HQ-OPP-2008-0802 | 10/30/08 - Registration Review: Preliminary Problem Formulation for Ecological Risk, Environmental Fate, Endangered Species, and Drinking Water Assessments for Debacarb (2-EEEBC) | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2014-09-23T16:02:28Z | 0 | 0 | 09000064807a5ef5 | ||||
| EPA-HQ-OPP-2008-0802-0007 | EPA | None EPA-HQ-OPP-2008-0802 | 12/11/08. 2-EEEBC (Debacarb) Summary Document | Supporting & Related Material | Letter, Memorandum, Email | 2008-12-17T05:00:00Z | 2008 | 12 | 2014-09-23T16:02:29Z | 0 | 0 | 09000064807d8d03 | |||
| EPA-HQ-OPP-2008-0802-0001 | EPA | None EPA-HQ-OPP-2008-0802 | Pesticide Registration Review; New Dockets Opened for Review and Comment; Clossure of the Mevinphos and Azinphos Methyl (AZM) Registration Review Cases | Notice | Federal Register Document | 2008-12-17T05:00:00Z | 2008 | 12 | 2008-12-17T05:00:00Z | 2009-03-18T03:59:59Z | 2014-09-23T16:02:29Z | E8-29773 | 0 | 0 | 09000064807df479 |
| EPA-HQ-OPP-2008-0802-0008 | EPA | None EPA-HQ-OPP-2008-0802 | 12/3/08. DCI Revisions Memo Note to File | Supporting & Related Material | Letter, Memorandum, Email | 2008-12-17T05:00:00Z | 2008 | 12 | 2014-09-23T16:02:29Z | 0 | 0 | 09000064807d8d18 | |||
| EPA-HQ-OPP-2008-0802-0004 | EPA | None EPA-HQ-OPP-2008-0802 | 10/30/08 - Updated Review of 2-EEEBC Incident Reports. | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2014-09-23T16:02:28Z | 0 | 0 | 09000064807a5f1d | ||||
| EPA-HQ-OPP-2008-0802-0005 | EPA | None EPA-HQ-OPP-2008-0802 | 7/31/08 - Screening Level Use Analysis (SLUA) for 2-EEEBC: Appendix A. | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2014-09-23T16:02:28Z | 0 | 0 | 09000064807a5f32 | ||||
| EPA-HQ-OPP-2008-0802-0006 | EPA | None EPA-HQ-OPP-2008-0802 | 12/11/08. Reader's Guide to 2-EEEBC (Debacarb) Docket # EPA-HQ-OPP-2008-0802 | Supporting & Related Material | Letter, Memorandum, Email | 2008-12-17T05:00:00Z | 2008 | 12 | 2014-09-23T16:02:29Z | 0 | 0 | 09000064807d8cd1 | |||
| EPA-HQ-OPP-2008-0802-0002 | EPA | None EPA-HQ-OPP-2008-0802 | 10/30/08 - 2-EEEBC: Human Health Assessment Scoping Document in Support of Registration Review. | Supporting & Related Material | 2008-12-17T05:00:00Z | 2008 | 12 | 2014-09-23T16:02:28Z | 0 | 0 | 09000064807a5edc |
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;