documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPP-2025-0258" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 6
| 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-0258-0007 | EPA | None EPA-HQ-OPP-2025-0258 | Registration Decision New Use of Methylorubrum populi strain NLS0089 | Supporting & Related Material | Decision | 2026-02-04T05:00:00Z | 2026 | 2 | 2026-02-05T00:59:33Z | 0 | 0 | 09000064b918ce59 | |||
| EPA-HQ-OPP-2025-0258-0005 | EPA | None EPA-HQ-OPP-2025-0258 | Draft Label TS601 09/20/2025 | Supporting & Related Material | 2025-12-19T05:00:00Z | 2025 | 12 | 2025-12-19T22:43:16Z | 0 | 0 | 09000064b9040698 | ||||
| EPA-HQ-OPP-2025-0258-0006 | EPA | None EPA-HQ-OPP-2025-0258 | Proposed Registration Decision for the First Residential Use of Methylorubrum populi strain NLS0089 | Supporting & Related Material | Decision | 2025-12-19T05:00:00Z | 2025 | 12 | 2025-12-19T22:44:47Z | 0 | 0 | 09000064b90f6ea8 | |||
| EPA-HQ-OPP-2025-0258-0003 | EPA | None EPA-HQ-OPP-2025-0258 | Public Participation for _New Use Methylorubrum populi strain NLS0089_ | Other | Public Participation | 2025-12-19T05:00:00Z | 2025 | 12 | 2025-12-19T05:00:00Z | 2026-01-03T04:59:59Z | 2025-12-19T22:43:04Z | 0 | 0 | 09000064b90f7dc1 | |
| EPA-HQ-OPP-2025-0258-0004 | EPA | None EPA-HQ-OPP-2025-0258 | Review of a PRIA label amendment application (B644) involving the addition of New Uses for the End Use Product (EP) TS601 (95699-1) containing the microbial active ingredient Methylorubrum populi strain NLS0089 | Supporting & Related Material | Memorandum | 2025-12-19T05:00:00Z | 2025 | 12 | 2025-12-19T22:43:12Z | 0 | 0 | 09000064b9040678 | |||
| EPA-HQ-OPP-2025-0258-0001 | EPA | None EPA-HQ-OPP-2025-0258 | Pesticide Product Registration: Applications for New Uses (March-May 2025) | Notice | 2025-08-04T04:00:00Z | 2025 | 8 | 2025-08-04T04:00:00Z | 2025-09-04T03:59:59Z | 2025-09-04T09:00:19Z | 2025-14651 | 0 | 0 | 09000064b8ed6476 |
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;