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-2023-0062" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_end_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
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-2023-0062-0010 | EPA | None EPA-HQ-OPP-2023-0062 | Fluindapyr. Petition for the Establishment of Permanent Tolerances and Registration for Use on Cereal Grains (Crop Group 15) except Rice, Forage, Fodder and Straw of Cereal Grains (Crop Group 16) except Rice, Small Vine Climbing Fruit except Fuzzy Kiwifruit (Crop Subgroup 13-07F), and Soybean. Summary of Analytical Chemistry and Residue Data | Supporting & Related Material | Petition | 2024-11-08T05:00:00Z | 2024 | 11 | 2024-11-09T01:36:33Z | 0 | 0 | 09000064867cf2b4 | |||
| EPA-HQ-OPP-2023-0062-0008 | EPA | None EPA-HQ-OPP-2023-0062 | Occupational/Residential Exposure Assessment-Fluindapyr Proposed Uses on Soybeans, Sod Farms, Athletic Fields and Residential Turfgrass and Lawns | Supporting & Related Material | Risk Assessment | 2024-11-08T05:00:00Z | 2024 | 11 | 2024-11-09T01:36:05Z | 0 | 0 | 09000064867cf8d2 | |||
| EPA-HQ-OPP-2023-0062-0006 | EPA | None EPA-HQ-OPP-2023-0062 | Pesticide Tolerance; Exemptions, Petitions, Revocations, etc.: Fluindapyr | Rule | 2024-11-08T05:00:00Z | 2024 | 11 | 2024-11-08T05:00:00Z | 2024-11-08T17:55:50Z | 2024-25917 | 0 | 0 | 0900006486809592 | ||
| EPA-HQ-OPP-2023-0062-0007 | EPA | None EPA-HQ-OPP-2023-0062 | Fluindapyr (138008). Petition for the Establishment of Tolerances and Registration of New Uses on Soybean. Summary of Analytical Chemistry and Residue Data | Supporting & Related Material | Petition | 2024-11-08T05:00:00Z | 2024 | 11 | 2024-11-09T01:36:47Z | 0 | 0 | 09000064867cf8d1 | |||
| EPA-HQ-OPP-2023-0062-0009 | EPA | None EPA-HQ-OPP-2023-0062 | Fluindapyr- Human Health Risk Assessment for Section 3 Registration and Tolerance Requests for Use on Soybeans and Proposed New Uses on Sod Farms, Athletic Fields, and Residential Turfgrass and Lawns | Supporting & Related Material | Risk Assessment | 2024-11-08T05:00:00Z | 2024 | 11 | 2024-11-09T01:36:19Z | 0 | 0 | 09000064867cf8d3 | |||
| EPA-HQ-OPP-2023-0062-0004 | EPA | None EPA-HQ-OPP-2023-0062 | Pesticide Product Receipt of a Pesticide Petition Filed for Residues of Pesticide Chemicals in or on Various Commodities (May 2023) | Notice | 2024-03-12T04:00:00Z | 2024 | 3 | 2024-03-12T04:00:00Z | 2023-08-05T03:59:59Z | 2024-03-13T00:53:24Z | 0 | 0 | 0900006486474c71 | ||
| EPA-HQ-OPP-2023-0062-0005 | EPA | None EPA-HQ-OPP-2023-0062 | Company Notice of Filing | Supporting & Related Material | 2024-03-12T04:00:00Z | 2024 | 3 | 2024-03-13T00:53:12Z | 0 | 0 | 090000648612ea37 | ||||
| EPA-HQ-OPP-2023-0062-0003 | EPA | None EPA-HQ-OPP-2023-0062 | Pesticide Product Registration: Applications for New Active Ingredients May 2023 | Notice | 2023-07-06T04:00:00Z | 2023 | 7 | 2023-07-06T04:00:00Z | 2023-07-27T03:59:59Z | 2023-07-07T00:55:04Z | 2023-13426 | 0 | 0 | 0900006485c54f96 | |
| EPA-HQ-OPP-2023-0062-0002 | EPA | None EPA-HQ-OPP-2023-0062 | Pesticide Product Registration: Applications for New Uses May 2023 | Notice | 2023-06-28T04:00:00Z | 2023 | 6 | 2023-06-28T04:00:00Z | 2023-07-27T03:59:59Z | 2023-06-29T00:50:04Z | 2023-13482 | 0 | 0 | 0900006485bf518b |
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;