documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-HQ-OPP-2025-0099" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 4
| 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-2025-0099-0004 | EPA | Pesticide Tolerance; Exemption; New Active Ingredient, Cry1B.34.1 protein EPA-HQ-OPP-2025-0099 | Pesticide Tolerances: Bacillus thuringiensis Cry1B.34.1, Bacillus thuringiensis Cry1B.61.1 and Adiantum trapeziforme var. braziliense IPD083Cb Proteins | Rule | 2026-05-29T04:00:00Z | 2026 | 5 | 2026-05-29T04:00:00Z | 2026-05-29T19:35:37Z | 2026-10709 | 0 | 0 | 09000064b92fd250 | ||
| EPA-HQ-OPP-2025-0099-0005 | EPA | Pesticide Tolerance; Exemption; New Active Ingredient, Cry1B.34.1 protein EPA-HQ-OPP-2025-0099 | Product Characterization Review and Human Health Risk Assessment of the Insecticidal Plant Incorporated Protectant (PIP) Active Ingredients Cry1B.34.1, Cry1B.61.1, and IPD083Cb, the PIP Inert Ingredient GM-HRA, and the Genetic Material Necessary (PHP90315 T-DNA) for their Production in Event COR23134 Soybean (OECD Unique Identifier: COR-23134-4). Data Provided in Support of a FIFRA Section 3 Seed | Supporting & Related Material | Risk Assessment | 2026-05-29T04:00:00Z | 2026 | 5 | 2026-05-29T21:52:50Z | 0 | 0 | 09000064b92e8da9 | |||
| EPA-HQ-OPP-2025-0099-0001 | EPA | Pesticide Tolerance; Exemption; New Active Ingredient, Cry1B.34.1 protein EPA-HQ-OPP-2025-0099 | Pesticide Petitions Filed for Residues of Pesticide Chemicals in or on Various Commodities—June 2025 | Proposed Rule | 2025-09-05T04:00:00Z | 2025 | 9 | 2025-09-05T04:00:00Z | 2025-10-07T03:59:59Z | 2025-10-07T09:01:31Z | 2025-17008 | 0 | 0 | 09000064b8f4674b | |
| EPA-HQ-OPP-2025-0099-0002 | EPA | Pesticide Tolerance; Exemption; New Active Ingredient, Cry1B.34.1 protein EPA-HQ-OPP-2025-0099 | Pioneer Hi-Bred International, Inc. Notice of Filing for Pesticide Petition Number #4F9125 to establish an exemption from the requirement of a tolerance for- Bacillus thuringiensis Cry1B.34.1 protein as a plant-incorporated protectant in all food and feed commodities | Supporting & Related Material | Petition | 2025-09-05T04:00:00Z | 2025 | 9 | 2025-09-05T20:33:55Z | 0 | 0 | 09000064b8e34f0f |
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;