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-2009-0301" and posted_year = 2020 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)
| 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-2009-0301-0138 | EPA | None EPA-HQ-OPP-2009-0301 | Pyrethroids: Health Effects Division Response to Public Comments Submitted to the Special Docket for Pyrethroids, Pyrethrins, and Synergists [EPA-HQ-OPP-2008-0331] | Supporting & Related Material | Comment Response | 2020-10-23T04:00:00Z | 2020 | 10 | 2020-10-23T20:43:28Z | 0 | 0 | 09000064848d4533 | |||
| EPA-HQ-OPP-2009-0301-0137 | EPA | None EPA-HQ-OPP-2009-0301 | Esfenvalerate Interim Registration Review Decision Case Number 7406 | Supporting & Related Material | Decision | 2020-10-23T04:00:00Z | 2020 | 10 | 2020-10-23T20:43:27Z | 0 | 0 | 09000064848d4532 | |||
| EPA-HQ-OPP-2009-0301-0139 | EPA | None EPA-HQ-OPP-2009-0301 | Pyrethroids and Pyrethrins Revised Ecological Risk Mitigation and Response to Comments on the Ecological Risk Mitigation Proposal For 23 Chemicals | Supporting & Related Material | Comment Response | 2020-10-23T04:00:00Z | 2020 | 10 | 2020-10-23T20:43:28Z | 0 | 0 | 09000064848d4534 | |||
| EPA-HQ-OPP-2009-0301-0136 | EPA | None EPA-HQ-OPP-2009-0301 | Pesticide Registration Review: Interim Decisions for Several Pesticides | Notice | 2020-10-23T04:00:00Z | 2020 | 10 | 2020-10-23T04:00:00Z | 2020-12-08T17:51:35Z | 2020-23504 | 0 | 0 | 09000064849299bf | ||
| EPA-HQ-OPP-2009-0301-0122 | EPA | None EPA-HQ-OPP-2009-0301 | Data Evaluation Record for the Study: “Determination of Esfenvalerate Dislodgeable Residue Transfer Efficiencies from Carpet and Vinyl” | Supporting & Related Material | Evaluation | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:04:18Z | 0 | 0 | 09000064844523a1 | |||
| EPA-HQ-OPP-2009-0301-0120 | EPA | None EPA-HQ-OPP-2009-0301 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T04:00:00Z | 2020-07-07T03:59:59Z | 2020-07-23T01:01:45Z | 2020-09571 | 0 | 0 | 0900006484561a71 | |
| EPA-HQ-OPP-2009-0301-0124 | EPA | None EPA-HQ-OPP-2009-0301 | Esfenvalerate: Response to Public Comments on the Draft Human Health Risk Assessment for Registration Review | Supporting & Related Material | Comment Response | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:04:19Z | 0 | 0 | 090000648445259e | |||
| EPA-HQ-OPP-2009-0301-0121 | EPA | None EPA-HQ-OPP-2009-0301 | Data Evaluation Record for the Study: “Determination of Transferable Turf Residues On Turf Treated with Esfenvalerate (Evercide® Residual Insecticide Concentrate 2662)” | Supporting & Related Material | Evaluation | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:04:17Z | 0 | 0 | 090000648445239b | |||
| EPA-HQ-OPP-2009-0301-0123 | EPA | None EPA-HQ-OPP-2009-0301 | Esfenvalerate: Proposed Interim Registration Review Decision Case Number 7406 | Supporting & Related Material | Decision | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:04:19Z | 0 | 0 | 090000648445259d | |||
| EPA-HQ-OPP-2009-0301-0125 | EPA | None EPA-HQ-OPP-2009-0301 | Esfenvalerate: Updated Human Health Draft Risk Assessment in Support of Registration Review | Supporting & Related Material | Risk Assessment | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T21:04:20Z | 0 | 0 | 090000648445259f | |||
| EPA-HQ-OPP-2009-0301-0119 | EPA | None EPA-HQ-OPP-2009-0301 | Pyrethroids Comment Extension Letter | Other | 2020-01-09T05:00:00Z | 2020 | 1 | 2020-01-09T05:00:00Z | 2020-01-10T00:29:49Z | 0 | 0 | 0900006484284675 |
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;