documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OPP-2020-0538" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 5
| 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-0538-0005 | EPA | None EPA-HQ-OPP-2020-0538 | Mefentrifluconazole. Human Health Risk Assessment for Petition for Petition for the Establishment of Permanent Tolerances for Use on Banana and Coffee without U.S. Registration | Supporting & Related Material | Risk Assessment | 2021-12-17T05:00:00Z | 2021 | 12 | 2021-12-18T01:45:04Z | 0 | 0 | 0900006484e31c17 | |||
| EPA-HQ-OPP-2020-0538-0006 | EPA | None EPA-HQ-OPP-2020-0538 | Common Triazole Metabolites: Updated Dietary (Food + Water) Exposure and Risk Assessment to Address The Establishment of a Difenoconazole Tolerances with No U.S. Registration for Imported Avocado, Section 3 Registrations on Corn, Peanut, and Caneberry 13-07A and Mefentrifluconazole Tolerances with no U.S. Registration for Imported Banana and Coffee | Supporting & Related Material | Risk Assessment | 2021-12-17T05:00:00Z | 2021 | 12 | 2021-12-18T01:44:54Z | 0 | 0 | 0900006484e31c13 | |||
| EPA-HQ-OPP-2020-0538-0004 | EPA | None EPA-HQ-OPP-2020-0538 | Pesticide Tolerances: Mefentrifluconazole | Rule | 2021-12-15T05:00:00Z | 2021 | 12 | 2021-12-15T05:00:00Z | 2022-02-15T04:59:59Z | 2021-12-16T15:20:48Z | 2021-27093 | 0 | 0 | 0900006484ecb09c | |
| EPA-HQ-OPP-2020-0538-0001 | EPA | None EPA-HQ-OPP-2020-0538 | Pesticide Petition: Residues of Pesticide Chemicals in or on Various Commodities (October 2020) | Proposed Rule | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-21T05:00:00Z | 2021-01-21T04:59:59Z | 2020-12-22T02:03:20Z | 2020-28117 | 0 | 0 | 09000064849b0d4b | |
| EPA-HQ-OPP-2020-0538-0002 | EPA | None EPA-HQ-OPP-2020-0538 | BASF Corporation Notice of Filing Pesticide Petition # 0E8849 to establish a tolerance for residues of the fungicide mefentrifluconazole (BAS 750 F); 2-[4-(4-chlorophenoxy)-2-(trifluoromethyl)phenyl]-1-(1H-1,2,4-triazole-1-yl)propan-2-ol] in or on the following raw agricultural commodities: banana at 1.5 ppm, coffee at 0.4 ppm | Supporting & Related Material | Petition | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-22T01:56:23Z | 0 | 0 | 090000648492a0da |
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;