documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "EPA-HQ-OPP-2008-0440" 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), 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-0440-0013 | EPA | None EPA-HQ-OPP-2008-0440 | 11/13/08 - Dicrotophos Final Work Plan | Supporting & Related Material | 2008-11-26T05:00:00Z | 2008 | 11 | 2008-11-26T21:09:44Z | 0 | 0 | 09000064807a9a2f | ||||
| EPA-HQ-OPP-2008-0440-0008 | EPA | None EPA-HQ-OPP-2008-0440 | Review of Dicrotophos Incident Reports - 6/9/98 | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T13:57:11Z | 0 | 0 | 090000648061e8f8 | ||||
| EPA-HQ-OPP-2008-0440-0002 | EPA | None EPA-HQ-OPP-2008-0440 | Reader’s Guide to Dicrotophos Docket # EPA-HQ-OPP-2008-0440 | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T13:57:06Z | 0 | 0 | 090000648060e695 | ||||
| EPA-HQ-OPP-2008-0440-0004 | EPA | None EPA-HQ-OPP-2008-0440 | Registration Review - Preliminary Problem Formulation for the Ecological Risk Assessment of Dicrotophos | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T13:57:08Z | 0 | 0 | 090000648060e6d9 | ||||
| EPA-HQ-OPP-2008-0440-0009 | EPA | None EPA-HQ-OPP-2008-0440 | DICROTOPHOS - EFED Chapter of the RED - 10/28/98 | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T13:57:12Z | 0 | 0 | 090000648061e91c | ||||
| EPA-HQ-OPP-2008-0440-0010 | EPA | None EPA-HQ-OPP-2008-0440 | DICROTOPHOS - HED Chapter of the RED - 10/28/99 | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T13:57:13Z | 0 | 0 | 090000648061e934 | ||||
| EPA-HQ-OPP-2008-0440-0005 | EPA | None EPA-HQ-OPP-2008-0440 | Dicrotophos Human Health Risk Scoping Document in Support of Registration Review - 6/3/08 | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-11-10T15:12:24Z | 0 | 0 | 090000648060e702 | ||||
| EPA-HQ-OPP-2008-0440-0001 | EPA | None EPA-HQ-OPP-2008-0440 | Pesticide Registration Review; New Dockets Opened for Review and Comment; Closure of the Phosalone Registration Review Case (Dicrotophos) | Notice | Federal Register Document | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T04:00:00Z | 2008-09-24T03:59:59Z | 2008-06-30T17:49:49Z | E8-14238 | 0 | 0 | 090000648063c232 |
| EPA-HQ-OPP-2008-0440-0003 | EPA | None EPA-HQ-OPP-2008-0440 | Dicrotophos Summary Document | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T13:57:07Z | 0 | 0 | 090000648060e6c0 | ||||
| EPA-HQ-OPP-2008-0440-0006 | EPA | None EPA-HQ-OPP-2008-0440 | DICROTOPHOS Screening Level Usage Analysis (SLUA) - 10/11/07 | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T13:57:09Z | 0 | 0 | 09000064806125a9 | ||||
| EPA-HQ-OPP-2008-0440-0011 | EPA | None EPA-HQ-OPP-2008-0440 | HED Review of Dicrotophos Incident Reports (6/4/08) | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T13:57:13Z | 0 | 0 | 0900006480629026 | ||||
| EPA-HQ-OPP-2008-0440-0007 | EPA | None EPA-HQ-OPP-2008-0440 | Correspondence Between The EPA and AMVAC Regarding Early Season Use of Dicrotophos (2.9.07) | Supporting & Related Material | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T13:57:10Z | 0 | 0 | 09000064806125b5 |
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;