documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPP-2016-0600" 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)
| 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-2016-0600-0004 | EPA | None EPA-HQ-OPP-2016-0600 | Boscalid. Human Health Risk Assessment for Petition to Amend the Tolerance on Edible Podded Legume Vegetable Subgroup 6A | Supporting & Related Material | Risk Assessment | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-12-01T02:11:21Z | 0 | 0 | 09000064826ce184 | |||
| EPA-HQ-OPP-2016-0600-0003 | EPA | None EPA-HQ-OPP-2016-0600 | Pesticide Tolerances: Boscalid | Rule | Final Rule | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-11-30T17:23:37Z | 2017-25832 | 0 | 0 | 0900006482cc09d0 | ||
| EPA-HQ-OPP-2016-0600-0006 | EPA | None EPA-HQ-OPP-2016-0600 | Boscalid. Human Health Risk Assessment for a Section 3 Registration of New Uses on Herb Subgroup 19A and Dill Seed, Plus Crop Group Conversions on Stone Fruit Group 12-12 and Tree Nut Group 14-12 | Supporting & Related Material | Risk Assessment | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-12-01T02:11:40Z | 0 | 0 | 09000064826ce387 | |||
| EPA-HQ-OPP-2016-0600-0005 | EPA | None EPA-HQ-OPP-2016-0600 | Boscalid. Chronic Aggregate Dietary (Food and Drinking Water) Exposure and Risk Assessment in support of the Section 3 Registration Action, Amendment of Tolerance on Vegetable, Legume, Edible Podded, Subgroup 6A for Imported Commodities. MRID No. 49973901 | Supporting & Related Material | Risk Assessment | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-12-01T02:11:31Z | 0 | 0 | 09000064826ce185 | |||
| EPA-HQ-OPP-2016-0600-0002 | EPA | None EPA-HQ-OPP-2016-0600 | BASF Corporation Notice of Filing Pesticide Petition #[number not yet assigned] increasing an established tolerance for residues of boscalid, 3-pyridinecarboxamide,2-chloro-N-(4'-chloro[1,1'-biphenyl]-2-yl) in or on the raw commodity Vegetable, legume, edible-podded, subgroup 6A | Supporting & Related Material | Petition | 2017-07-26T04:00:00Z | 2017 | 7 | 2017-07-27T00:56:14Z | 0 | 0 | 090000648229a682 | |||
| EPA-HQ-OPP-2016-0600-0001 | EPA | None EPA-HQ-OPP-2016-0600 | Pesticide Petitions: Residues of Pesticide Chemicals in or on Various Commodities | Notice | 2017-07-26T04:00:00Z | 2017 | 7 | 2017-07-26T04:00:00Z | 2017-08-26T03:59:59Z | 2017-07-27T00:56:09Z | 2017-15730 | 0 | 0 | 0900006482972007 |
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;