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-2024-0323" 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 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-2024-0323-0014 | EPA | None EPA-HQ-OPP-2024-0323 | 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:32Z | 2025-17008 | 0 | 0 | 09000064b8f48cc4 | |
| EPA-HQ-OPP-2024-0323-0006 | EPA | None EPA-HQ-OPP-2024-0323 | Pesticide Tolerance; Exemptions, Petitions, Revocations, etc.: Residues of Pesticide Chemicals in or on Various Commodities—January 2025 | Proposed Rule | 2025-04-07T00:00:00Z | 2025 | 4 | 2025-04-07T00:00:00Z | 2025-05-08T03:59:59Z | 2025-05-09T01:17:24Z | 2025-05915 | 0 | 0 | 0900006486a72ba3 | |
| EPA-HQ-OPP-2024-0323-0003 | EPA | None EPA-HQ-OPP-2024-0323 | Pesticide Product Registration: Applications for New Uses (December 2024) | Notice | 2025-02-25T05:00:00Z | 2025 | 2 | 2025-02-25T05:00:00Z | 2025-03-27T03:59:59Z | 2025-03-27T01:00:45Z | 2025-02990 | 0 | 0 | 090000648698f79f | |
| EPA-HQ-OPP-2024-0323-0004 | EPA | None EPA-HQ-OPP-2024-0323 | BASF Corporation Notice of Filing Pesticide Petition No. PP4F9136 | Supporting & Related Material | Petition | 2025-02-25T05:00:00Z | 2025 | 2 | 2025-02-25T19:30:00Z | 0 | 0 | 0900006486878907 | |||
| EPA-HQ-OPP-2024-0323-0002 | EPA | None EPA-HQ-OPP-2024-0323 | Saflufenacil: Tolerance Petition to Establish Field Pennycress Seed PP4E9140 establishing a tolerance in or on Pennycress, seed at 0.45 parts per million (ppm) | Supporting & Related Material | Petition | 2024-11-01T04:00:00Z | 2024 | 11 | 2024-11-02T00:44:22Z | 0 | 0 | 09000064866582ea | |||
| EPA-HQ-OPP-2024-0323-0001 | EPA | None EPA-HQ-OPP-2024-0323 | Pesticide Tolerance; Exemptions, Petitions, Revocations, etc.: Residues of Pesticide Chemicals in or on Various Commodities (August 2024) | Proposed Rule | 2024-11-01T04:00:00Z | 2024 | 11 | 2024-11-01T04:00:00Z | 2024-12-03T04:59:59Z | 2024-11-02T00:44:34Z | 2024-25474 | 0 | 0 | 09000064867f528b |
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;