documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2023-0246" 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)
document_type 4
agency_id 1
- EPA 9
| 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-2023-0246-0007 | EPA | None EPA-HQ-OPP-2023-0246 | Tiafenacil: Ecological Risk Assessment for the Proposed Section 3 New Uses on Barley, Sweet Corn, Peanuts, Dry Peas, Dry Beans, Grain Sorghum, Citrus, Pome Fruit, Stone Fruit, Rapeseed, Tree Nuts, and the Addition of Non-Crop Uses for Industrial Vegetative Management Uses and Ornamentals | Supporting & Related Material | Risk Assessment | 2025-04-07T04:00:00Z | 2025 | 4 | 2025-04-07T19:38:28Z | 0 | 0 | 0900006486a0b7bf | |||
| EPA-HQ-OPP-2023-0246-0006 | EPA | None EPA-HQ-OPP-2023-0246 | Tiafenacil. Chronic Dietary (Food and Drinking Water) Exposure and Risk Assessment to Support the New Proposed Uses on Agricultural Crops | Supporting & Related Material | Risk Assessment | 2025-04-07T04:00:00Z | 2025 | 4 | 2025-04-07T19:38:27Z | 0 | 0 | 0900006486a0b7be | |||
| EPA-HQ-OPP-2023-0246-0008 | EPA | None EPA-HQ-OPP-2023-0246 | Tiafenacil. Occupational and Residential Exposure Assessment for Proposed New Uses on Agricultural Crops and for Proposed Label Amendment to Add Aerial Application for Corn, Wheat, Soybean, Cotton, and Fallow | Supporting & Related Material | Risk Assessment | 2025-04-07T04:00:00Z | 2025 | 4 | 2025-04-07T19:38:29Z | 0 | 0 | 0900006486a0b7c0 | |||
| EPA-HQ-OPP-2023-0246-0009 | EPA | None EPA-HQ-OPP-2023-0246 | Tiafenacil. Human Health Risk Assessment for the New Proposed Uses on Agricultural Crops as well as Non-Agricultural/Industrial Sites and Label Amendments | Supporting & Related Material | Risk Assessment | 2025-04-07T04:00:00Z | 2025 | 4 | 2025-04-07T19:38:29Z | 0 | 0 | 0900006486a0b813 | |||
| EPA-HQ-OPP-2023-0246-0010 | EPA | None EPA-HQ-OPP-2023-0246 | Tiafenacil. Petition to Support the New Proposed Uses on Agricultural Crops. Summary of Analytical Chemistry and Residue Data | Supporting & Related Material | Data | 2025-04-07T04:00:00Z | 2025 | 4 | 2025-04-07T19:38:30Z | 0 | 0 | 0900006486a0b814 | |||
| EPA-HQ-OPP-2023-0246-0005 | EPA | None EPA-HQ-OPP-2023-0246 | Pesticide Tolerance; Exemptions, Petitions, Revocations, etc.: Tiafenacil | Rule | 2025-04-07T04:00:00Z | 2025 | 4 | 2025-04-07T04:00:00Z | 2025-06-07T03:59:59Z | 2025-04-17T16:24:46Z | 2025-05912 | 0 | 0 | 0900006486a72e1f | |
| EPA-HQ-OPP-2023-0246-0003 | EPA | None EPA-HQ-OPP-2023-0246 | Pesticide Petition Filed for Residues of Pesticide Chemicals in or on Various Commodities; September 2023 | Proposed Rule | 2023-10-26T04:00:00Z | 2023 | 10 | 2023-10-26T04:00:00Z | 2023-11-28T04:59:59Z | 2023-11-27T02:00:57Z | 2023-23472 | 0 | 0 | 090000648613b551 | |
| EPA-HQ-OPP-2023-0246-0002 | EPA | None EPA-HQ-OPP-2023-0246 | ISK Biosciences Corporation Notice of Filing Pesticide Petition No. PP2F9040 to establish tolerances for residues of the herbicide Tiafenacil, including its metabolites and degradates | Supporting & Related Material | Petition | 2023-10-24T04:00:00Z | 2023 | 10 | 2023-10-25T01:13:05Z | 0 | 0 | 0900006485fc8c4a | |||
| EPA-HQ-OPP-2023-0246-0001 | EPA | None EPA-HQ-OPP-2023-0246 | Pesticide Product Registration: Applications for New Uses (September 2023) | Notice | 2023-10-24T04:00:00Z | 2023 | 10 | 2023-10-24T04:00:00Z | 2023-11-25T04:59:59Z | 2023-10-25T01:12:50Z | 2023-23489 | 0 | 0 | 0900006486127f42 |
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;