documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPP-2011-0488" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 11
| 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-2011-0488-0012 | EPA | None EPA-HQ-OPP-2011-0488 | Final Registration Decision-Tolclofos-methyl | Supporting & Related Material | Decision | 2013-01-16T05:00:00Z | 2013 | 1 | 2013-01-16T19:42:32Z | 0 | 0 | 09000064811b6be8 | |||
| EPA-HQ-OPP-2011-0488-0007 | EPA | None EPA-HQ-OPP-2011-0488 | Revised Section 3 Environmental Fate and Ecological Risk Assessment for Tolclofos-methyl including (Cover Memo) | Supporting & Related Material | Risk Assessment | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T20:08:24Z | 0 | 0 | 090000648111a918 | |||
| EPA-HQ-OPP-2011-0488-0006 | EPA | None EPA-HQ-OPP-2011-0488 | Tolclofos-methyl: Non-food Use For Seed Treatment on Various Crops | Supporting & Related Material | Report | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T20:08:23Z | 0 | 0 | 090000648111a917 | |||
| EPA-HQ-OPP-2011-0488-0004 | EPA | None EPA-HQ-OPP-2011-0488 | Tolclofos-methyl: Human Health Risk Assessment for Proposed New Seed Treatment Uses | Supporting & Related Material | Risk Assessment | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T20:08:22Z | 0 | 0 | 090000648111a915 | |||
| EPA-HQ-OPP-2011-0488-0011 | EPA | None EPA-HQ-OPP-2011-0488 | Proposed Registration Decision Document for the New Active Ingredient, Tolclofos-methyl, for use as a seed treatment on a variety of vegetable crops and ornamental plants | Supporting & Related Material | Decision | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T20:08:26Z | 0 | 0 | 0900006481184b42 | |||
| EPA-HQ-OPP-2011-0488-0005 | EPA | None EPA-HQ-OPP-2011-0488 | Tolclofos-methyl. Occupational and Residential Exposure Assessment for Proposed Seed Treatment Uses on Various Crop Groups | Supporting & Related Material | Risk Assessment | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T20:08:23Z | 0 | 0 | 090000648111a916 | |||
| EPA-HQ-OPP-2011-0488-0009 | EPA | None EPA-HQ-OPP-2011-0488 | Tolclofos Methyl Technical Fungicide Proposed Label EPA File Symbol Number 59639RTT | Supporting & Related Material | Publication - Copyrighted Materials | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T20:08:25Z | 0 | 0 | 090000648111ca25 | |||
| EPA-HQ-OPP-2011-0488-0010 | EPA | None EPA-HQ-OPP-2011-0488 | Tolclofos-methyl: REVISED Human Health Risk Assessment for Proposed New Seed Treatment Uses | Supporting & Related Material | Risk Assessment | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T20:08:25Z | 0 | 0 | 0900006481173509 | |||
| EPA-HQ-OPP-2011-0488-0003 | EPA | None EPA-HQ-OPP-2011-0488 | Public Participation for New Active Ingredient Tolclofos-Methyl, Non Food Use Seed Treatment | Other | Public Participation | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T05:00:00Z | 2013-01-09T04:59:59Z | 2012-12-10T23:15:43Z | 0 | 0 | 0900006481184b43 | |
| EPA-HQ-OPP-2011-0488-0008 | EPA | None EPA-HQ-OPP-2011-0488 | Rizolex Flowable Fungicide Proposed Label EPA File Symbol Number 59639RTI | Supporting & Related Material | Publication - Copyrighted Materials | 2012-12-10T05:00:00Z | 2012 | 12 | 2012-12-10T20:08:24Z | 0 | 0 | 090000648111ca24 | |||
| EPA-HQ-OPP-2011-0488-0001 | EPA | None EPA-HQ-OPP-2011-0488 | Pesticide Products; Registration Applications | Notice | 2012-03-09T05:00:00Z | 2012 | 3 | 2012-03-09T05:00:00Z | 2012-04-10T03:59:59Z | 2012-03-09T15:37:48Z | 2012-05644 | 0 | 0 | 0900006480fd2d8a |
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;