documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPP-2012-0161" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date (date), comment_start_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-0161-0104 | EPA | None EPA-HQ-OPP-2012-0161 | Aldicarb: Response to Comments from AgLogic Chemical, LLC on the Proposed Interim Decision (PID) for the Registration Review of Aldicarb. | Supporting & Related Material | Comment Response | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-28T02:01:24Z | 0 | 0 | 0900006482e14133 | |||
| EPA-HQ-OPP-2012-0161-0106 | EPA | None EPA-HQ-OPP-2012-0161 | BEAD Characterization of Sugar Beet Planting Practices in Support of the Human Health Risk Assessment for Aldicarb. | Supporting & Related Material | Risk Assessment | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-28T02:01:36Z | 0 | 0 | 0900006482e141ae | |||
| EPA-HQ-OPP-2012-0161-0109 | EPA | None EPA-HQ-OPP-2012-0161 | Data Evaluation Record (DER) for MRID No.'s 497939-01 thru -02 Analytical Method for Aldicarb and its Metabolites, Aldicarb-Sulfone and Aldicarb-Sulfoxide, in Soil. | Supporting & Related Material | Evaluation | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-28T02:01:48Z | 0 | 0 | 0900006482e141b1 | |||
| EPA-HQ-OPP-2012-0161-0102 | EPA | None EPA-HQ-OPP-2012-0161 | Aldicarb. Revised Acute Aggregate Dietary (Food and Drinking Water) Exposure and Risk Assessments for Registration Review Risk Assessment. | Supporting & Related Material | Risk Assessment | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-28T02:00:12Z | 0 | 0 | 0900006482e14131 | |||
| EPA-HQ-OPP-2012-0161-0105 | EPA | None EPA-HQ-OPP-2012-0161 | Revised Proportion of lmported Oranges, Orange Juice, Potatoes, and Sweet Potatoes as a Component of Total Consumption in the United States and Review of Registrant submitted Percent Crop Treated Estimate for Sweet Potatoes: Data to Support the Human Dietary Risk Assessment of Aldicarb. | Supporting & Related Material | Risk Assessment | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-28T02:00:36Z | 0 | 0 | 0900006482e14134 | |||
| EPA-HQ-OPP-2012-0161-0108 | EPA | None EPA-HQ-OPP-2012-0161 | Aldicarb: Transmittal of Data Evaluation Record for Environmental Fate Study. | Supporting & Related Material | Memorandum | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-28T02:00:48Z | 0 | 0 | 0900006482e141b0 | |||
| EPA-HQ-OPP-2012-0161-0107 | EPA | None EPA-HQ-OPP-2012-0161 | Letter from Antoine Puech, Ph.D., Managing Member, Aglogic Chemical LLC to Susan Bartow, Chemical Review Manager, Pesticide Reevaluation Division, Office of Pesticide Programs (OPP), U.S. EPA dated November 21, 2017 | Supporting & Related Material | Letter | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-28T02:01:00Z | 0 | 0 | 0900006482e141af | |||
| EPA-HQ-OPP-2012-0161-0101 | EPA | None EPA-HQ-OPP-2012-0161 | Aldicarb Interim Registration Review Decision Case Number 0140 | Supporting & Related Material | Decision | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-28T02:00:24Z | 0 | 0 | 0900006482e14130 | |||
| EPA-HQ-OPP-2012-0161-0100 | EPA | None EPA-HQ-OPP-2012-0161 | Interim Registration Review Decisions and Case Closures for Several Pesticides | Notice | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-27T05:00:00Z | 2018-02-28T02:01:12Z | 2018-03982 | 0 | 0 | 0900006482f6b522 | ||
| EPA-HQ-OPP-2012-0161-0103 | EPA | None EPA-HQ-OPP-2012-0161 | Response to Public Comments Received on the Aldicarb Proposed Interim Registration Review Decision. | Supporting & Related Material | Comment Response | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-28T02:00:00Z | 0 | 0 | 0900006482e14132 |
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;