documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2025-0177" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 8
| 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-0177-0006 | EPA | Application for Section 3 Registration of Three new Active Ingredients Containing Spinach Defensin Proteins for use in Citrus EPA-HQ-OPP-2025-0177 | Public Participation for the new active ingredients collectively referred to as CTV-SoD2 variants. | Other | Public Participation | 2026-05-14T04:00:00Z | 2026 | 5 | 2026-05-14T04:00:00Z | 2026-05-30T03:59:59Z | 2026-05-14T16:37:50Z | 1 | 0 | 09000064b92d6cc7 | |
| EPA-HQ-OPP-2025-0177-0010 | EPA | Application for Section 3 Registration of Three new Active Ingredients Containing Spinach Defensin Proteins for use in Citrus EPA-HQ-OPP-2025-0177 | Product label: Construct CTV-SoD2-1 | Supporting & Related Material | 2026-05-14T04:00:00Z | 2026 | 5 | 2026-05-14T16:39:23Z | 0 | 0 | 09000064b92cf35b | ||||
| EPA-HQ-OPP-2025-0177-0007 | EPA | Application for Section 3 Registration of Three new Active Ingredients Containing Spinach Defensin Proteins for use in Citrus EPA-HQ-OPP-2025-0177 | Product Characterization and Human Health Risk Assessment for Citrus tristeza virus (CTV) strain T36 expressing Spinach Defensin Proteins (SoD) 2, 2-1, and 2* (March 26, 2026) | Supporting & Related Material | Data | 2026-05-14T04:00:00Z | 2026 | 5 | 2026-05-14T16:39:22Z | 0 | 0 | 09000064b92cf32b | |||
| EPA-HQ-OPP-2025-0177-0012 | EPA | Application for Section 3 Registration of Three new Active Ingredients Containing Spinach Defensin Proteins for use in Citrus EPA-HQ-OPP-2025-0177 | Proposed Registration Decision for the New Microbial Pesticide Active Ingredients: Citrus tristeza virus (CTV) strain T36 expressing Spinach Defensin Protein SoD2, Citrus tristeza virus (CTV) strain T36 expressing Spinach Defensin Protein SoD2-1, and Citrus tristeza virus (CTV) strain T36 expressing Spinach Defensin Protein SoD2* | Supporting & Related Material | Decision | 2026-05-14T04:00:00Z | 2026 | 5 | 2026-05-14T16:39:23Z | 0 | 0 | 09000064b92d0205 | |||
| EPA-HQ-OPP-2025-0177-0009 | EPA | Application for Section 3 Registration of Three new Active Ingredients Containing Spinach Defensin Proteins for use in Citrus EPA-HQ-OPP-2025-0177 | Product label: Construct CTV-SoD2 | Supporting & Related Material | 2026-05-14T04:00:00Z | 2026 | 5 | 2026-05-14T16:39:23Z | 0 | 0 | 09000064b92cf35a | ||||
| EPA-HQ-OPP-2025-0177-0011 | EPA | Application for Section 3 Registration of Three new Active Ingredients Containing Spinach Defensin Proteins for use in Citrus EPA-HQ-OPP-2025-0177 | Product label: Construct CTV-SoD2* | Supporting & Related Material | 2026-05-14T04:00:00Z | 2026 | 5 | 2026-05-14T16:39:23Z | 0 | 0 | 09000064b92cf3be | ||||
| EPA-HQ-OPP-2025-0177-0008 | EPA | Application for Section 3 Registration of Three new Active Ingredients Containing Spinach Defensin Proteins for use in Citrus EPA-HQ-OPP-2025-0177 | Environmental Risk Assessment for the New Active Ingredients Spinach Defensin Protein 2 (GE CTV-SoD2, CTV-SoD2-1, and CTV-SoD2*) as Expressed in Genetically Engineered Citrus Tristeza Virus Strain T36 Isolates. Data and Information Were Provided in Support of Applications for FIFRA Section 3 End Use Registrations | Supporting & Related Material | Risk Assessment | 2026-05-14T04:00:00Z | 2026 | 5 | 2026-05-14T16:39:23Z | 0 | 0 | 09000064b92cf33b | |||
| EPA-HQ-OPP-2025-0177-0001 | EPA | Application for Section 3 Registration of Three new Active Ingredients Containing Spinach Defensin Proteins for use in Citrus EPA-HQ-OPP-2025-0177 | Pesticide Product Registration: Applications for New Active Ingredients (March-May 2025) | Notice | 2025-08-04T04:00:00Z | 2025 | 8 | 2025-08-04T04:00:00Z | 2025-09-04T03:59:59Z | 2025-12-12T10:00:13Z | 2025-14653 | 0 | 0 | 09000064b8ed7913 |
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;