documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2020-0603" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_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-2020-0603-0005 | EPA | None EPA-HQ-OPP-2020-0603 | Cyflumetofen. Petition for the Establishment of Permanent Tolerances and Registration for Use on Hops. Summary of Analytical Chemistry and Residue Data | Supporting & Related Material | Petition | 2021-12-06T05:00:00Z | 2021 | 12 | 2021-12-07T01:43:37Z | 0 | 0 | 0900006484e536d7 | |||
| EPA-HQ-OPP-2020-0603-0008 | EPA | None EPA-HQ-OPP-2020-0603 | Cyflumetofen. Human Health Risk Assessment for the Section 3 Registration Action for a New Use on Hops | Supporting & Related Material | Risk Assessment | 2021-12-06T05:00:00Z | 2021 | 12 | 2021-12-07T01:43:55Z | 0 | 0 | 0900006484e5391e | |||
| EPA-HQ-OPP-2020-0603-0006 | EPA | None EPA-HQ-OPP-2020-0603 | Cyflumetofen. Chronic Aggregate Dietary Exposure and Risk Assessment for New Uses on Hops | Supporting & Related Material | Risk Assessment | 2021-12-06T05:00:00Z | 2021 | 12 | 2021-12-07T01:43:46Z | 0 | 0 | 0900006484e536d8 | |||
| EPA-HQ-OPP-2020-0603-0007 | EPA | None EPA-HQ-OPP-2020-0603 | Cyflumetofen. Occupational and Residential Exposure Assessment for a Proposed Use on Hops | Supporting & Related Material | Risk Assessment | 2021-12-06T05:00:00Z | 2021 | 12 | 2021-12-07T01:44:03Z | 0 | 0 | 0900006484e5391c | |||
| EPA-HQ-OPP-2020-0603-0004 | EPA | None EPA-HQ-OPP-2020-0603 | Pesticide Tolerances: Cyflumetofen | Rule | Final Rule | 2021-12-06T05:00:00Z | 2021 | 12 | 2021-12-06T05:00:00Z | 2022-02-05T04:59:59Z | 2022-02-05T02:00:50Z | 2021-26397 | 0 | 0 | 0900006484ea3386 |
| EPA-HQ-OPP-2020-0603-0003 | EPA | None EPA-HQ-OPP-2020-0603 | Interregional Research Project #4 Notice of Filing Pesticide Petition No. 0E8862 to establish Cyflumetofen | Supporting & Related Material | Petition | 2021-02-26T05:00:00Z | 2021 | 2 | 2021-02-27T01:53:25Z | 0 | 0 | 0900006484967a00 | |||
| EPA-HQ-OPP-2020-0603-0001 | EPA | None EPA-HQ-OPP-2020-0603 | Pesticide Product Registration;Receipt of Applications for New Uses (December 2020) | Notice | 2021-02-26T05:00:00Z | 2021 | 2 | 2021-02-26T05:00:00Z | 2021-03-12T04:59:59Z | 2021-02-27T01:53:45Z | 0 | 0 | 0900006484a32e7c | ||
| EPA-HQ-OPP-2020-0603-0002 | EPA | None EPA-HQ-OPP-2020-0603 | Receipt of a Pesticide Petition Filed for Residues of Pesticide Chemicals in or on Various Commodities (February 2021) | Notice | 2021-02-26T05:00:00Z | 2021 | 2 | 2021-02-26T05:00:00Z | 2021-03-30T03:59:59Z | 2021-02-27T01:53:36Z | 0 | 0 | 0900006484a501f3 |
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;