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-2016-0448" 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)
document_type 4
agency_id 1
- EPA 8
| 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-2016-0448-0006 | EPA | None EPA-HQ-OPP-2016-0448 | Drinking water memorandum for the proposed new uses for the chemical benzovindiflupyr (P.C. Code: 122305) on bulb and green onions (IR-4), sugarcane (IR-4), and grass for seed (Section 3) (DP Barcode Nos. 434985 and 438462). | Supporting & Related Material | 2017-11-14T05:00:00Z | 2017 | 11 | 2017-11-15T03:23:02Z | 0 | 0 | 0900006482b4e7af | ||||
| EPA-HQ-OPP-2016-0448-0004 | EPA | None EPA-HQ-OPP-2016-0448 | Pesticide Tolerances: Benzovindiflupyr | Rule | Final Rule | 2017-11-14T05:00:00Z | 2017 | 11 | 2017-11-14T19:33:17Z | 2017-24109 | 0 | 0 | 0900006482c72317 | ||
| EPA-HQ-OPP-2016-0448-0005 | EPA | None EPA-HQ-OPP-2016-0448 | Benzovindiflupyr: Acute, and Chronic Aggregate Dietary Food and Drinking Water Exposure and Risk Assessment for the Section 3 Registration Action for Proposed New Uses on Sugarcane and Onions (Subgroups 3-07A and 3-07B). | Supporting & Related Material | 2017-11-14T05:00:00Z | 2017 | 11 | 2017-11-15T03:23:12Z | 0 | 0 | 0900006482b4e7ae | ||||
| EPA-HQ-OPP-2016-0448-0007 | EPA | None EPA-HQ-OPP-2016-0448 | Benzovindiflupyr. Human Health Risk Assessment for the Proposed Use on Onion, Bulb Subgroup 3-07 A; Onion, Green, Subgroup 3-07B; and Sugarcane. | Supporting & Related Material | 2017-11-14T05:00:00Z | 2017 | 11 | 2017-11-15T03:22:51Z | 0 | 0 | 0900006482b4e7b0 | ||||
| EPA-HQ-OPP-2016-0448-0008 | EPA | None EPA-HQ-OPP-2016-0448 | Benzovindiflupyr. Petition for the Section 3 Registration and Establishment of Permanent Tolerances for Benzovindiflupyr for Use on: Onion (bulb onion subgroup 3-07 A, green onion subgroup 3-07B) and Sugarcane. Summary of Analytical Chemistry and Residue Data. | Supporting & Related Material | 2017-11-14T05:00:00Z | 2017 | 11 | 2017-11-15T03:23:22Z | 0 | 0 | 0900006482b4e7b1 | ||||
| EPA-HQ-OPP-2016-0448-0003 | EPA | None EPA-HQ-OPP-2016-0448 | Pesticide Product Registrations: Receipt of Applications for New Uses | Notice | 2017-06-08T04:00:00Z | 2017 | 6 | 2017-06-08T04:00:00Z | 2017-07-11T03:59:59Z | 2017-06-09T04:10:57Z | 2017-11929 | 0 | 0 | 09000064826b094c | |
| EPA-HQ-OPP-2016-0448-0002 | EPA | None EPA-HQ-OPP-2016-0448 | Interregional Research Project Number 4 (IR-4) Notice of Filing Pesticide Petition #6E8483 Establishing a Tolerance or Residues of benzovindiflupyr, (N-[9-(dichloromethylene)-1,2,3,4-tetrahydro-1,4-methanonaphthalen-5-yl]-3-(difluoromethyl)-1-methyl-1H-pyrazole-4-carboxamide) in or on Bulb Onion Subgroup 3-07A and Green Onion Subgroup 3-07B | Supporting & Related Material | Petition | 2016-10-18T04:00:00Z | 2016 | 10 | 2016-10-19T00:48:54Z | 0 | 0 | 090000648215521e | |||
| EPA-HQ-OPP-2016-0448-0001 | EPA | None EPA-HQ-OPP-2016-0448 | Pesticide Petitions: Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | Petition | 2016-10-18T04:00:00Z | 2016 | 10 | 2016-10-18T04:00:00Z | 2016-11-18T04:59:59Z | 2016-10-19T00:48:49Z | 2016-25146 | 0 | 0 | 09000064823138ce |
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;