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-2012-0392" and posted_year = 2022 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)
| 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-2012-0392-0079 | EPA | None EPA-HQ-OPP-2012-0392 | Comment Period Extension for Iprodione | Other | 2022-04-14T00:00:00Z | 2022 | 4 | 2022-04-14T00:00:00Z | 2025-05-09T10:18:27Z | 0 | 0 | 0900006484fdef6c | |||
| EPA-HQ-OPP-2012-0392-0056 | EPA | None EPA-HQ-OPP-2012-0392 | Iprodione Proposed Interim Registration Review Decision Case Number 2335 | Supporting & Related Material | Decision | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-04T02:14:23Z | 0 | 0 | 0900006484f0d86e | |||
| EPA-HQ-OPP-2012-0392-0058 | EPA | None EPA-HQ-OPP-2012-0392 | Iprodione. Response to Comments on the Draft Risk Assessment for Registration Review | Supporting & Related Material | Comment Response | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-04T02:14:00Z | 0 | 0 | 0900006484f0d871 | |||
| EPA-HQ-OPP-2012-0392-0057 | EPA | None EPA-HQ-OPP-2012-0392 | Iprodione. Addendum to the Draft Human Health Risk Assessment in Support of Registration Review | Supporting & Related Material | Risk Assessment | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-04T02:14:45Z | 0 | 0 | 0900006484f0d870 | |||
| EPA-HQ-OPP-2012-0392-0060 | EPA | None EPA-HQ-OPP-2012-0392 | Addendum to the Drinking Water Exposure Assessment (DWA) for Registration Review of Iprodione | Supporting & Related Material | Risk Assessment | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-04T02:13:38Z | 0 | 0 | 0900006484f0db4e | |||
| EPA-HQ-OPP-2012-0392-0059 | EPA | None EPA-HQ-OPP-2012-0392 | Response to Comments on the Draft Ecological Risk Assessment and Drinking Water Assessment for Registration Review of Iprodione | Supporting & Related Material | Comment Response | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-04T02:13:49Z | 0 | 0 | 0900006484f0db4c | |||
| EPA-HQ-OPP-2012-0392-0062 | EPA | None EPA-HQ-OPP-2012-0392 | Iprodione (PC# 109801) Registration Review: Assessment of Use, Usage, Benefits and Impacts of Potential Mitigation for Agricultural and Non-Agricultural Uses | Supporting & Related Material | Risk Assessment | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-04T02:14:56Z | 0 | 0 | 0900006484f0db51 | |||
| EPA-HQ-OPP-2012-0392-0061 | EPA | None EPA-HQ-OPP-2012-0392 | Iprodione. Dietary Exposure and Risk Assessment in Support of Registration Review | Supporting & Related Material | Risk Assessment | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-04T02:14:11Z | 0 | 0 | 0900006484f0db50 | |||
| EPA-HQ-OPP-2012-0392-0055 | EPA | None EPA-HQ-OPP-2012-0392 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2022-02-03T00:00:00Z | 2022 | 2 | 2022-02-03T00:00:00Z | 2022-05-05T03:59:59Z | 2025-05-09T01:17:14Z | 2022-02197 | 0 | 0 | 0900006484f5112a |
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;