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-2021-0529" 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)
document_type 3
agency_id 1
- EPA 7
| 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-2021-0529-0003 | EPA | None EPA-HQ-OPP-2021-0529 | Pesticide Tolerances: Fluazifop-P-butyl | Rule | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-27T04:00:00Z | 2023-06-27T03:59:59Z | 2023-04-28T00:40:25Z | 2023-08939 | 0 | 0 | 0900006485993933 | |
| EPA-HQ-OPP-2021-0529-0007 | EPA | None EPA-HQ-OPP-2021-0529 | Fluazifop-P-butyl. Petition for the Establishment of Permanenr Tolerances and Registrations for New Uses on Brassica, leafy greens, subgroup 4-16B (Mustard Greens); Vegetable, Brassica head and stem, group 5-16 (Broccoli, Cabbage), Leaf petiole vegetable subgroup 22B (Celery), Papaya, Chives (Dried Leaves); for Crop Group Expansions/Conversions [Strawberry to Subgroup 13-07G | Supporting & Related Material | Petition | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-28T00:40:49Z | 0 | 0 | 0900006485995549 | |||
| EPA-HQ-OPP-2021-0529-0004 | EPA | None EPA-HQ-OPP-2021-0529 | Fluazifop-P-butyl. Acute and Chronic Aggregate Dietary (Food and Drinking Water) Exposure and Risk Assessments for New Uses on Brassica, leafy greens, subgroup 4-16B (Mustard Greens); Vegetable, Brassica head and stem, group 5-16 (Broccoli, Cabbage), Leaf petiole vegetable subgroup 22B (Celery), Papaya, Chives (Dried Leaves); for Crop Group Expansions/Conversions [Strawberry to Subgroup 13-07G | Supporting & Related Material | Risk Assessment | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-28T00:40:13Z | 0 | 0 | 0900006485995544 | |||
| EPA-HQ-OPP-2021-0529-0006 | EPA | None EPA-HQ-OPP-2021-0529 | Fluazifop-P-butyl. Occupational and Residential Exposure Assessment for Proposed Uses on Brassica, leafy greens (subgroup 4-16B), Vegetable, Brassica,head and stem (group 5-16), Leaf petiole vegetable (subgroup 22B), and Papaya; Crop group expansions to Onion, green, subgroup 3-07B and Berry, low growing, subgroup 13-07G; and Crop group conversions to Fruit, citrus, group 10-10 and Fruit, stone | Supporting & Related Material | Risk Assessment | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-28T00:40:37Z | 0 | 0 | 0900006485995548 | |||
| EPA-HQ-OPP-2021-0529-0005 | EPA | None EPA-HQ-OPP-2021-0529 | Fluazifop-P-butyl. Human Health Risk Assessment for Proposed Uses and/or Tolerances on Brassica, leafy greens (subgroup 4-16B), Vegetable, Brassica, head and stem (group 5-16), Leaf petiole vegetable (subgroup 22B), Chive, dried leaves, and Papaya; Crop group expansions to Onion, green, subgroup 3-07B | Supporting & Related Material | Risk Assessment | 2023-04-27T04:00:00Z | 2023 | 4 | 2023-04-28T00:41:01Z | 0 | 0 | 09000064859940f8 | |||
| EPA-HQ-OPP-2021-0529-0001 | EPA | None EPA-HQ-OPP-2021-0529 | Pesticide Petitions: Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2022-11-17T05:00:00Z | 2022 | 11 | 2022-11-17T05:00:00Z | 2022-12-20T04:59:59Z | 2022-11-21T12:23:40Z | 2022-25071 | 0 | 0 | 09000064854c27af | |
| EPA-HQ-OPP-2021-0529-0002 | EPA | None EPA-HQ-OPP-2021-0529 | Syngenta Crop Protection, LLC Notice of Filing Pesticide Petition to establish a tolerance for inadvertent residues of Fluazifop-p-butyl metabolite 5-(Trifluoromethyl)-2-Pyridone (TFP) | Supporting & Related Material | Petition | 2022-11-17T05:00:00Z | 2022 | 11 | 2022-11-21T12:23:41Z | 0 | 0 | 090000648542ec12 |
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;