documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPP-2022-0832" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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-2022-0832-0006 | EPA | None EPA-HQ-OPP-2022-0832 | Flonicamid (128016); Chronic Aggregate Dietary (Food and Drinking Water) Exposure and Risk Assessment for the Petition for the Establishment of Permanent Tolerances for Residues in/on Bushberry Subgroup 13-07B, Caneberry Subgroup 13-07A, Peach Subgroup 12-12B, Pomegranate, Prickly Pear Cactus, Sweet Corn, and Crop Group Expansions | Supporting & Related Material | Risk Assessment | 2023-09-20T04:00:00Z | 2023 | 9 | 2023-09-21T03:42:56Z | 0 | 0 | 0900006485f947ba | |||
| EPA-HQ-OPP-2022-0832-0008 | EPA | None EPA-HQ-OPP-2022-0832 | Flonicamid. Human Health Risk Assessment for the Proposed New Uses and Tolerance Establishment in/on Bushberry Subgroup 13-07B, Caneberry Subgroup 13-07A, Cherry Subgroup 12A, Peach Subgroup 12-12B, Plum Subgroup 12C, Pomegranate, Prickly Pear Cactus, Sweet Corn, and Crop Group Conversions/Expansions for Legume Vegetables New Crop Group 6-22A-F | Supporting & Related Material | Risk Assessment | 2023-09-20T04:00:00Z | 2023 | 9 | 2023-09-21T03:43:47Z | 0 | 0 | 0900006485f947bc | |||
| EPA-HQ-OPP-2022-0832-0007 | EPA | None EPA-HQ-OPP-2022-0832 | Flonicamid (128016). Petition for the Establishment of Permanent Tolerances in/on Bushberry Subgroup 13-07B, Caneberry Subgroup 13-07A, Peach Subgroup 12-12B, Pomegranate, Prickly Pear Cactus, Sweet Corn, and Crop Group Expansions. Summary of Analytical Chemistry and Residue Data | Supporting & Related Material | Petition | 2023-09-20T04:00:00Z | 2023 | 9 | 2023-09-21T03:43:17Z | 0 | 0 | 0900006485f947bb | |||
| EPA-HQ-OPP-2022-0832-0005 | EPA | None EPA-HQ-OPP-2022-0832 | Pesticide Tolerances: Flonicamid | Rule | 2023-09-20T04:00:00Z | 2023 | 9 | 2023-09-20T04:00:00Z | 2023-11-21T04:59:59Z | 2023-09-20T13:32:09Z | 2023-20273 | 0 | 0 | 0900006485fd6794 | |
| EPA-HQ-OPP-2022-0832-0003 | EPA | None EPA-HQ-OPP-2022-0832 | Pesticide Product Registration: Applications for New Uses, November 2022 | Notice | 2023-01-03T05:00:00Z | 2023 | 1 | 2023-01-03T05:00:00Z | 2023-02-03T04:59:59Z | 2023-02-03T02:01:02Z | 2022-28528 | 0 | 0 | 090000648557fa68 | |
| EPA-HQ-OPP-2022-0832-0002 | EPA | None EPA-HQ-OPP-2022-0832 | Interregional Research Project #4 Notice of Filing Pesticide Petition No.#2E9000 to establish a tolerance to remove established tolerances for the residues of the insecticide flonicamid and its metabolites and degradates determined by measuring flonicamid [N-(cyanomethyl)-4-(trifluoromethyl)- 3-pyridinecarboxamide] and its metabolites TFNA (4-trifluoromethylnicotinic acid), | Supporting & Related Material | Petition | 2023-01-03T05:00:00Z | 2023 | 1 | 2023-01-11T19:34:48Z | 0 | 0 | 09000064854c5bbe | |||
| EPA-HQ-OPP-2022-0832-0001 | EPA | None EPA-HQ-OPP-2022-0832 | Pesticide Petition: Residues of Pesticide Chemicals in or on Various Commodities November 2022 | Proposed Rule | 2023-01-03T05:00:00Z | 2023 | 1 | 2023-01-03T05:00:00Z | 2023-02-03T04:59:59Z | 2023-01-11T19:34:45Z | 2022-28524 | 0 | 0 | 090000648557f997 |
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;