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-2012-0796" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2012-0796-0006 | EPA | None EPA-HQ-OPP-2012-0796 | Revised Estimated Drinking Water Conentrations (EDWCs) of Ipconazole from its Proposed New Use by Expansion of Uses from Crop Subgroup 6C to the Entire Crop Group 6 for Use in Human Health Risk Assessment | Supporting & Related Material | Risk Assessment | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T19:42:32Z | 0 | 0 | 09000064815b3cb0 | |||
| EPA-HQ-OPP-2012-0796-0005 | EPA | None EPA-HQ-OPP-2012-0796 | Addendum to the Revised Ipconazole Human Health Risk Assessment of the Proposed Use on Legume Vegetables (Crop Group 6) | Supporting & Related Material | Risk Assessment | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T19:42:33Z | 0 | 0 | 09000064815b3caf | |||
| EPA-HQ-OPP-2012-0796-0009 | EPA | None EPA-HQ-OPP-2012-0796 | Ipconazole. Petition to Establish Permanent Tolerances for Residues of the Fungicide Resulting from Food Use on Legume Vegetables, Group 6. Summary of Analytical Chemistry and Residue Data. | Supporting & Related Material | Risk Assessment | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T19:42:32Z | 0 | 0 | 09000064815b3cb3 | |||
| EPA-HQ-OPP-2012-0796-0010 | EPA | None EPA-HQ-OPP-2012-0796 | Revised Dietary, lpconazole. Acute and Chronic Aggregate Dietary (Food and Drinking Water) Exposure and Risk Assessments for the Section 3 Registration Action; Food Use on Legume Vegetables, Group 6 (Revised). | Supporting & Related Material | Risk Assessment | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T19:42:32Z | 0 | 0 | 09000064815b3cb4 | |||
| EPA-HQ-OPP-2012-0796-0004 | EPA | None EPA-HQ-OPP-2012-0796 | Pesticide Tolerances: Ipconazole | Rule | Final Rule | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T04:00:00Z | 2014-05-20T03:59:59Z | 2014-05-20T01:01:50Z | 2014-06059 | 0 | 0 | 090000648166f115 |
| EPA-HQ-OPP-2012-0796-0008 | EPA | None EPA-HQ-OPP-2012-0796 | Ipconazole. Petition to Establish Permanent Tolerances for Residues of the Fungicide Resulting from Food Use on Legume Vegetables, Group 6. Summary of Analytical Chemistry and Residue Data. | Supporting & Related Material | Risk Assessment | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T19:42:32Z | 0 | 0 | 09000064815b3cb2 | |||
| EPA-HQ-OPP-2012-0796-0007 | EPA | None EPA-HQ-OPP-2012-0796 | Environmenta Fate Effect Divioson Ecological Risk Assessment for Section 3 New Use Registration for the Fungicide Ipconazole as a Seed Treatment | Supporting & Related Material | Risk Assessment | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T19:42:32Z | 0 | 0 | 09000064815b3cb1 | |||
| EPA-HQ-OPP-2012-0796-0011 | EPA | None EPA-HQ-OPP-2012-0796 | Revised Ipconazole Human Health Risk Assessment of the Proposed Use on Legume Vegetables (Crop Group 6) | Supporting & Related Material | Risk Assessment | 2014-03-19T04:00:00Z | 2014 | 3 | 2014-03-19T19:42:32Z | 0 | 0 | 09000064815b3cb5 |
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;