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-2022-0448" 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 2
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-2022-0448-0016 | EPA | None EPA-HQ-OPP-2022-0448 | Sedaxane Interim Registration Review Decision | Supporting & Related Material | Decision | 2025-11-18T05:00:00Z | 2025 | 11 | 2025-11-19T00:45:15Z | 0 | 0 | 09000064b8fd81ac | |||
| EPA-HQ-OPP-2022-0448-0015 | EPA | None EPA-HQ-OPP-2022-0448 | Pesticide Registration Review: Decisions and Case Closures for Several Pesticides | Notice | 2025-11-18T05:00:00Z | 2025 | 11 | 2025-11-18T05:00:00Z | 2025-11-19T00:45:05Z | 2025-20138 | 0 | 0 | 09000064b9088a05 | ||
| EPA-HQ-OPP-2022-0448-0010 | EPA | None EPA-HQ-OPP-2022-0448 | Sedaxane: Amended Proposed Interim Registration Review Decision | Supporting & Related Material | Decision | 2024-11-05T05:00:00Z | 2024 | 11 | 2024-11-06T01:45:16Z | 0 | 0 | 09000064867bf2f7 | |||
| EPA-HQ-OPP-2022-0448-0011 | EPA | None EPA-HQ-OPP-2022-0448 | Response to Comments Received on the Preliminary Interim Decision for the Registration Review of Sedaxane (Docket #: EPA-HQ-OPP-2022-0448) | Supporting & Related Material | Comment Response | 2024-11-05T05:00:00Z | 2024 | 11 | 2024-11-06T01:45:28Z | 0 | 0 | 09000064867bf2f8 | |||
| EPA-HQ-OPP-2022-0448-0009 | EPA | None EPA-HQ-OPP-2022-0448 | Pesticide Registration Review; Proposed Decisions for Several Pesticides; Notice of Availability | Notice | 2024-11-05T05:00:00Z | 2024 | 11 | 2024-11-05T05:00:00Z | 2025-01-07T04:59:59Z | 2025-01-07T02:01:03Z | 2024-25618 | 0 | 0 | 09000064867fee3f | |
| EPA-HQ-OPP-2022-0448-0003 | EPA | None EPA-HQ-OPP-2022-0448 | Combined Problem Formulation, Draft Risk Assessment, and Drinking Water Assessment for the Registration Review of Sedaxane | Supporting & Related Material | Risk Assessment | 2022-07-13T04:00:00Z | 2022 | 7 | 2022-07-14T00:56:32Z | 0 | 0 | 09000064851a7ecc | |||
| EPA-HQ-OPP-2022-0448-0002 | EPA | None EPA-HQ-OPP-2022-0448 | Sedaxane. Recommendation for Anticipated Data and Risk Assessments for Registration Review | Supporting & Related Material | Risk Assessment | 2022-07-13T04:00:00Z | 2022 | 7 | 2022-07-14T00:56:04Z | 0 | 0 | 09000064851a722c | |||
| EPA-HQ-OPP-2022-0448-0004 | EPA | None EPA-HQ-OPP-2022-0448 | Sedaxane - Combined Work Plan and Proposed Interim Registration Review Decision Case Number 7065 | Supporting & Related Material | Decision | 2022-07-13T04:00:00Z | 2022 | 7 | 2022-07-14T00:56:18Z | 0 | 0 | 09000064851a7ecd | |||
| EPA-HQ-OPP-2022-0448-0001 | EPA | None EPA-HQ-OPP-2022-0448 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2022-07-13T04:00:00Z | 2022 | 7 | 2022-07-13T04:00:00Z | 2022-09-13T03:59:59Z | 2022-09-15T01:00:44Z | 2022-14871 | 0 | 0 | 09000064851c7c4d |
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;