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-2008-0658" and posted_year = 2017 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-2008-0658-0044 | EPA | None EPA-HQ-OPP-2008-0658 | Pesticide Registration Notice PRN 2017-2 Guidance for Herbicide Resistance Management Labeling Education Training and Stewardship | Supporting & Related Material | Guidance | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T22:32:38Z | 0 | 0 | 0900006482b892ae | |||
| EPA-HQ-OPP-2008-0658-0041 | EPA | None EPA-HQ-OPP-2008-0658 | Interim Registration Review Decisions and Case Closures: Several Pesticides | Notice | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T05:00:00Z | 2017-12-19T16:32:06Z | 2017-27095 | 0 | 0 | 0900006482d163d6 | ||
| EPA-HQ-OPP-2008-0658-0042 | EPA | None EPA-HQ-OPP-2008-0658 | Clethodim Interim Registration Review Decision Case Number 7226 | Supporting & Related Material | Decision | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T22:32:37Z | 0 | 0 | 0900006482b892ac | |||
| EPA-HQ-OPP-2008-0658-0043 | EPA | None EPA-HQ-OPP-2008-0658 | Pesticide Registration Notice PRN 2017-1 Guidance for Pesticide Registrants on Pesticide Resistance Management Labeling | Supporting & Related Material | Guidance | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T22:32:38Z | 0 | 0 | 0900006482b892ad | |||
| EPA-HQ-OPP-2008-0658-0037 | EPA | None EPA-HQ-OPP-2008-0658 | Clethodim. Response to Public Comments on the Preliminary Ecological Risk Assessment for Registration Review | Supporting & Related Material | Risk Assessment | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T18:16:59Z | 0 | 0 | 090000648223e08c | |||
| EPA-HQ-OPP-2008-0658-0035 | EPA | None EPA-HQ-OPP-2008-0658 | Clethodim - Proposed Interim Registration Review Decision - Case Number 7226 | Supporting & Related Material | Decision | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T18:16:59Z | 0 | 0 | 090000648223e08a | |||
| EPA-HQ-OPP-2008-0658-0036 | EPA | None EPA-HQ-OPP-2008-0658 | Clethodim Usage and Benefits Information (PC #121011) | Supporting & Related Material | Risk Assessment | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T18:16:59Z | 0 | 0 | 090000648223e08b | |||
| EPA-HQ-OPP-2008-0658-0038 | EPA | None EPA-HQ-OPP-2008-0658 | Clethodim. Response to Public Comments Regarding the Human Health Preliminary Risk Assessment in Support of Registration Review | Supporting & Related Material | Comment Response | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T18:16:59Z | 0 | 0 | 090000648223e08d | |||
| EPA-HQ-OPP-2008-0658-0033 | EPA | None EPA-HQ-OPP-2008-0658 | Registration Reviews: Boric Acid/Sodium Salts, Clethodim, Diquat Dibromide, Ethephon, Fenitrothion, Hexazinone, Hymexazol, Methoxyfenozide, Pronamide, and Trimedlure | Notice | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T04:00:00Z | 2017-07-25T03:59:59Z | 2017-07-22T01:02:22Z | 2017-10670 | 0 | 0 | 0900006482616f4f | |
| EPA-HQ-OPP-2008-0658-0034 | EPA | None EPA-HQ-OPP-2008-0658 | Addendum to the Preliminary Risk Assessment for the Registration Review of Clethodim: Modeling of Parent-only Aquatic Exposure and New Assessment of Chronic Risk to Fish | Supporting & Related Material | Risk Assessment | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T18:16:58Z | 0 | 0 | 090000648223e089 | |||
| EPA-HQ-OPP-2008-0658-0039 | EPA | None EPA-HQ-OPP-2008-0658 | Usage Report in Support of Registration Review Draft Risk Assessment Purposes for Clethodim (PC Code # 121011) | Supporting & Related Material | Risk Assessment | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T18:16:59Z | 0 | 0 | 090000648223e08e |
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;