documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPP-2014-0131" and posted_year = 2021 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-2014-0131-0078 | EPA | None EPA-HQ-OPP-2014-0131 | Propargite (PC# 097601): An Analysis of California Department of Pesticide Regulation’s (CDPR) Pesticide Use Reporting (PUR) Data for Propargite from 2013 to 2017 Across All Agricultural Sites including Tree Nuts and Corn (Field, Sweet, Seed, and Popcorn) Grown in California for Potential Refinements to the Occupational Handler Cancer Exposure and Risk Estimates Regarding the Number of Days.... | Supporting & Related Material | Analysis | 2021-11-17T05:00:00Z | 2021 | 11 | 2021-11-18T02:13:23Z | 0 | 0 | 0900006484e37c3e | |||
| EPA-HQ-OPP-2014-0131-0060 | EPA | None EPA-HQ-OPP-2014-0131 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-23T04:00:00Z | 2021-06-23T03:59:59Z | 2021-06-24T01:00:24Z | 2021-08527 | 0 | 0 | 0900006484ab492c | |
| EPA-HQ-OPP-2014-0131-0064 | EPA | None EPA-HQ-OPP-2014-0131 | Propargite (PC 097601) Usage in Field Corn in the US Corn Belt Memorandum to Support Refinements to the Drinking Water Assessment | Supporting & Related Material | Risk Assessment | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-24T00:35:07Z | 0 | 0 | 0900006484a9f5dd | |||
| EPA-HQ-OPP-2014-0131-0061 | EPA | None EPA-HQ-OPP-2014-0131 | Propargite Proposed Interim Registration Review Decision Case Number 0243 | Supporting & Related Material | Decision | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-24T00:34:52Z | 0 | 0 | 0900006484a9f5da | |||
| EPA-HQ-OPP-2014-0131-0063 | EPA | None EPA-HQ-OPP-2014-0131 | Propargite. Revised Occupational and Residential Exposure Assessment for the Registration Review of Propargite. | Supporting & Related Material | Risk Assessment | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-24T00:34:45Z | 0 | 0 | 0900006484a9f5dc | |||
| EPA-HQ-OPP-2014-0131-0067 | EPA | None EPA-HQ-OPP-2014-0131 | Propargite: Revised Occupational Handler Assessment with Proposed Aerial Application Rate to Corn in Support of the Registration Review of Propargite. | Supporting & Related Material | Risk Assessment | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-24T00:34:22Z | 0 | 0 | 0900006484a9f5e1 | |||
| EPA-HQ-OPP-2014-0131-0065 | EPA | None EPA-HQ-OPP-2014-0131 | Propargite: Addendum to Drinking Water Exposure Assessment for Registration Review | Supporting & Related Material | Risk Assessment | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-24T00:34:37Z | 0 | 0 | 0900006484a9f5de | |||
| EPA-HQ-OPP-2014-0131-0068 | EPA | None EPA-HQ-OPP-2014-0131 | Propargite: Revised Draft Human Health Risk Assessment in Support of Registration Review | Supporting & Related Material | Risk Assessment | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-24T00:35:15Z | 0 | 0 | 0900006484a9f5df | |||
| EPA-HQ-OPP-2014-0131-0062 | EPA | None EPA-HQ-OPP-2014-0131 | Assessment of the Benefits of Propargite (PC# 097601) and Impacts of Potential Mitigations in Orchard and Vineyard Crops, Corn, Hops, and Ornamentals | Supporting & Related Material | Risk Assessment | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-24T00:34:30Z | 0 | 0 | 0900006484a9f5db | |||
| EPA-HQ-OPP-2014-0131-0066 | EPA | None EPA-HQ-OPP-2014-0131 | Propargite Revised Chronic (Food and Drinking Water) and Cancer (Food Only) Aggregate Dietary Exposure and Risk Assessments for the Registration Review Risk Assessment. | Supporting & Related Material | Risk Assessment | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-24T00:34:59Z | 0 | 0 | 0900006484a9f5e0 |
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;