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-2012-0167" and posted_year = 2012 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-2012-0167-0018 | EPA | None EPA-HQ-OPP-2012-0167 | 9/20/12 - Cypermethrin Final Work Plan | Supporting & Related Material | Work Plan | 2012-10-12T04:00:00Z | 2012 | 10 | 2012-10-12T15:54:47Z | 0 | 0 | 090000648112b7e9 | |||
| EPA-HQ-OPP-2012-0167-0003 | EPA | None EPA-HQ-OPP-2012-0167 | 3/1/12. Problem Formulation for the Environmental Fate and Ecological Risk, Endangered Species, and Drinking Water Assessments in Support of the Registration Review of Racemic Cypermethrin and Zeta-Cypermethrin | Supporting & Related Material | Memorandum | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T14:52:40Z | 0 | 0 | 0900006480fdc94e | |||
| EPA-HQ-OPP-2012-0167-0008 | EPA | None EPA-HQ-OPP-2012-0167 | 10/31/11. Cypermethrin (109702) Screening Level Usage Analysis (SLUA). | Supporting & Related Material | Memorandum | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T14:52:45Z | 0 | 0 | 0900006480fdc963 | |||
| EPA-HQ-OPP-2012-0167-0005 | EPA | None EPA-HQ-OPP-2012-0167 | 1/12/12. Cypermethrin and Zeta-Cypermethrin: Review of Human Incidents. | Supporting & Related Material | Memorandum | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T14:53:21Z | 0 | 0 | 0900006480fdc95d | |||
| EPA-HQ-OPP-2012-0167-0006 | EPA | None EPA-HQ-OPP-2012-0167 | 12/8/11. BEAD Case Level Chemical Profile for Registration Review: Cypermethrin (109702) and Zeta-Cypermethrin (129064). | Supporting & Related Material | Memorandum | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T14:53:11Z | 0 | 0 | 0900006480fdc95f | |||
| EPA-HQ-OPP-2012-0167-0009 | EPA | None EPA-HQ-OPP-2012-0167 | 5/25/11. Zeta-Cypermethrin Appendix A. | Supporting & Related Material | Memorandum | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T14:53:01Z | 0 | 0 | 0900006480fdc972 | |||
| EPA-HQ-OPP-2012-0167-0002 | EPA | None EPA-HQ-OPP-2012-0167 | 3/19/12. Cypermethrin Summary Document | Supporting & Related Material | Memorandum | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T14:52:51Z | 0 | 0 | 0900006480fdc936 | |||
| EPA-HQ-OPP-2012-0167-0004 | EPA | None EPA-HQ-OPP-2012-0167 | 3/1/12. Cypermethrin and Zeta-Cypermethrin. Human Health Risk Scoping Document in Support of Registration Review | Supporting & Related Material | Memorandum | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T14:53:05Z | 0 | 0 | 0900006480fdc952 | |||
| EPA-HQ-OPP-2012-0167-0007 | EPA | None EPA-HQ-OPP-2012-0167 | 10/11/11. Cypermethrin Appendix A. | Supporting & Related Material | Memorandum | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T14:53:16Z | 0 | 0 | 0900006480fdc961 | |||
| EPA-HQ-OPP-2012-0167-0010 | EPA | None EPA-HQ-OPP-2012-0167 | 10/31/11. Zeta-cypermethrin (129064) Screening Level Usage Analysis (SLUA). | Supporting & Related Material | Memorandum | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T14:52:56Z | 0 | 0 | 0900006480fdc973 | |||
| EPA-HQ-OPP-2012-0167-0001 | EPA | None EPA-HQ-OPP-2012-0167 | Registration Reviews: Pesticide Dockets Opened for Review and Comment and Other Docket Act | Notice | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T04:00:00Z | 2012-05-30T03:59:59Z | 2014-01-04T02:02:43Z | 2012-07449 | 0 | 0 | 0900006480fe2fc5 |
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;