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-2014-0740" 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)
| 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-2014-0740-0010 | EPA | None EPA-HQ-OPP-2014-0740 | Tier I Drinking Water Exposure Assessment for Acetamiprid in Regards to a Proposed Reduction in the Preharvest Interval for Clover and Hay. DP Barcode: D423299 | Supporting & Related Material | Risk Assessment | 2015-11-06T05:00:00Z | 2015 | 11 | 2015-11-07T01:34:15Z | 0 | 0 | 0900006481ce1b97 | |||
| EPA-HQ-OPP-2014-0740-0005 | EPA | None EPA-HQ-OPP-2014-0740 | Pesticide Tolerances: Acetamiprid | Rule | Final Rule | 2015-11-06T05:00:00Z | 2015 | 11 | 2015-11-06T05:00:00Z | 2016-01-06T04:59:59Z | 2015-11-06T15:07:39Z | 2015-28356 | 0 | 0 | 0900006481d1abb8 |
| EPA-HQ-OPP-2014-0740-0009 | EPA | None EPA-HQ-OPP-2014-0740 | Acetamiprid. Occupational and Residential Exposure Assessment for New Uses as a Pet Spot-on Treatment; And Increased Application Rates on Cotton, Leafy Vegetables. | Supporting & Related Material | Risk Assessment | 2015-11-06T05:00:00Z | 2015 | 11 | 2015-11-07T01:34:01Z | 0 | 0 | 0900006481ce1b95 | |||
| EPA-HQ-OPP-2014-0740-0006 | EPA | None EPA-HQ-OPP-2014-0740 | Human Health R/A for Proposed Label Amendments Use of Two End-Use Products on Various Crops; Proposed EP for Controlling Fleas, Ticks/Mosquitoes on Dogs; & a Petition Proposing Label Amendments for Two EPs, Revised Permanent Tolerances for Use of the insecticide on Clover with a Decreased Pre-Harvest Interval (Regional Registration). DP#'s: 0423298. 0426115. 0426117. 0427194 | Supporting & Related Material | Risk Assessment | 2015-11-06T05:00:00Z | 2015 | 11 | 2015-11-07T01:34:08Z | 0 | 0 | 0900006481ce18cf | |||
| EPA-HQ-OPP-2014-0740-0008 | EPA | None EPA-HQ-OPP-2014-0740 | Acetamiprid. Proposed Label Amendments for Use of Two End-Use Products on Various Crops; Petition Proposing Label Amendments. and Revised Permanent Tolerances, for Use of the Insecticide on Clover with a Decreased PreHarvest Interval (Regional Registration). Summary of Analytical Chemistry and Residue Data. DP Barcodes: 423321. 426115. 426117 | Supporting & Related Material | Risk Assessment | 2015-11-06T05:00:00Z | 2015 | 11 | 2015-11-06T15:18:17Z | 0 | 0 | 0900006481ce18d1 | |||
| EPA-HQ-OPP-2014-0740-0007 | EPA | None EPA-HQ-OPP-2014-0740 | Acetamiprid. Acute and Chronic Dietary Exposure and Risk Assessment for Use of the Insecticide on Clover Grown for Seed in Idaho, Oregon and Washington Only. DP Barcode: 427703 | Supporting & Related Material | Risk Assessment | 2015-11-06T05:00:00Z | 2015 | 11 | 2015-11-06T15:18:03Z | 0 | 0 | 0900006481ce18d0 | |||
| EPA-HQ-OPP-2014-0740-0002 | EPA | None EPA-HQ-OPP-2014-0740 | Acetamiprid [4E8307] - Company Notice of Filing Pesticide Petition number (PP#) 4E8307 from the Interregional Research Project Number 4 (IR-4) | Supporting & Related Material | Report | 2015-02-12T05:00:00Z | 2015 | 2 | 2015-02-12T23:25:13Z | 0 | 0 | 09000064818e1f97 | |||
| EPA-HQ-OPP-2014-0740-0001 | EPA | None EPA-HQ-OPP-2014-0740 | Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2015-02-12T05:00:00Z | 2015 | 2 | 2015-02-12T05:00:00Z | 2015-03-14T03:59:59Z | 2015-03-04T03:13:47Z | 2015-02611 | 0 | 0 | 0900006481a017b7 |
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;