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-0859" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-0859-0064 | EPA | None EPA-HQ-OPP-2012-0859 | Folpet. Health Effects Division Review of Silent Spring Institute Review on Mammary Gland Tumor Seen in Carcinogenicity Study on Folpet with Fischer 344 Rats | Supporting & Related Material | Study | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-29T02:26:41Z | 0 | 0 | 0900006485011fba | |||
| EPA-HQ-OPP-2012-0859-0061 | EPA | None EPA-HQ-OPP-2012-0859 | Folpet. Health Effects Division Response to Public Comments | Supporting & Related Material | Comment Response | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-29T02:27:03Z | 0 | 0 | 0900006484ff105a | |||
| EPA-HQ-OPP-2012-0859-0055 | EPA | None EPA-HQ-OPP-2012-0859 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-28T04:00:00Z | 2022-06-28T03:59:59Z | 2022-07-06T01:00:48Z | 2022-09135 | 0 | 0 | 090000648503d431 | |
| EPA-HQ-OPP-2012-0859-0057 | EPA | None EPA-HQ-OPP-2012-0859 | Discussion Regarding Paint Risk Assessment and Use Pattern Characterization | Supporting & Related Material | Risk Assessment | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-29T02:26:06Z | 0 | 0 | 0900006484ba0023 | |||
| EPA-HQ-OPP-2012-0859-0063 | EPA | None EPA-HQ-OPP-2012-0859 | Folpet. Addendum to the Human Health Draft Risk Assessment in Support of Registration Review | Supporting & Related Material | Risk Assessment | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-29T02:27:37Z | 0 | 0 | 0900006484ff105c | |||
| EPA-HQ-OPP-2012-0859-0058 | EPA | None EPA-HQ-OPP-2012-0859 | Revised Memorandum for the Registration Review Residential Dermal Exposure Assessment for Antimicrobial Uses of Folpet Based on Revisions to the Dermal Absorption Factor and Label Mitigation Measures | Supporting & Related Material | Risk Assessment | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-29T02:26:30Z | 0 | 0 | 0900006484fd9570 | |||
| EPA-HQ-OPP-2012-0859-0060 | EPA | None EPA-HQ-OPP-2012-0859 | Folpet Proposed Interim Registration Review Decision Case Number 0630 | Supporting & Related Material | Decision | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-29T02:27:14Z | 0 | 0 | 0900006484ff1059 | |||
| EPA-HQ-OPP-2012-0859-0056 | EPA | None EPA-HQ-OPP-2012-0859 | Meeting Minutes: Discussion of Proposed Folpet Mitigation with Registrants | Supporting & Related Material | Meeting Materials | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-29T02:27:47Z | 0 | 0 | 09000064849fb532 | |||
| EPA-HQ-OPP-2012-0859-0062 | EPA | None EPA-HQ-OPP-2012-0859 | Folpet. Response to Waiver Request for an Avian Inhalation Toxicity Study | Supporting & Related Material | Study | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-29T02:26:52Z | 0 | 0 | 0900006484ff105b | |||
| EPA-HQ-OPP-2012-0859-0059 | EPA | None EPA-HQ-OPP-2012-0859 | Folpet (PC#081601) Agricultural Use, Usage, and Benefits in Avocado and Hops | Supporting & Related Material | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-29T02:27:26Z | 0 | 0 | 0900006484ff1058 |
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;