documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2011-0885" 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-2011-0885-0179 | EPA | None EPA-HQ-OPP-2011-0885 | Authorization to Extend the Public Comment Period for Pyrethrins, Piperonyl Butoxide (PBO), and N-octyl bicycloheptene dicarboximide (MGK-264) | Other | 2021-10-01T04:00:00Z | 2021 | 10 | 2021-10-01T04:00:00Z | 2021-10-10T04:06:17Z | 0 | 0 | 0900006484db4fba | |||
| EPA-HQ-OPP-2011-0885-0166 | EPA | None EPA-HQ-OPP-2011-0885 | Pyrethrins. Response to Comments on HED's Draft Human Health Risk Assessment in Support of Registration Review | Supporting & Related Material | Comment Response | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:45:56Z | 0 | 0 | 0900006484bdba28 | |||
| EPA-HQ-OPP-2011-0885-0163 | EPA | None EPA-HQ-OPP-2011-0885 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-03T04:00:00Z | 2021-11-04T03:59:59Z | 2021-11-05T01:00:49Z | 2021-16516 | 0 | 0 | 0900006484c255d6 | |
| EPA-HQ-OPP-2011-0885-0167 | EPA | None EPA-HQ-OPP-2011-0885 | Pyrethrins (PC Code 069001), Piperonyl Butoxide (PBO) (PC Code 067501), and N-octyl Bicycloheptene Dicarboximide (MGK-264) (PC Code 057001): Nonagricultural Uses, Usage, and Benefits | Supporting & Related Material | Risk Assessment | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:46:23Z | 0 | 0 | 0900006484bdba24 | |||
| EPA-HQ-OPP-2011-0885-0164 | EPA | None EPA-HQ-OPP-2011-0885 | Updated Label Language for the Pyrethroids and Pyrethrins Revised Ecological Risk Mitigation and Response to Comments on the Ecological Risk Mitigation Proposal For 23 Chemicals, September 30, 2020 | Supporting & Related Material | Comment Response | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:46:34Z | 0 | 0 | 0900006484a9db7c | |||
| EPA-HQ-OPP-2011-0885-0165 | EPA | None EPA-HQ-OPP-2011-0885 | Pyrethrins Proposed Interim Registration Review Decision Case Number 2580 | Supporting & Related Material | Decision | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:45:48Z | 0 | 0 | 0900006484bf2be8 | |||
| EPA-HQ-OPP-2011-0885-0168 | EPA | None EPA-HQ-OPP-2011-0885 | Pyrethrins (PC Code 069001), Piperonyl Butoxide (PBO) (PC Code 067501), and N-octyl bicycloheptene dicarboximide (MGK-264) (PC Code 057001): Agricultural and Post-Harvest Uses, Usage, and Benefits | Supporting & Related Material | Risk Assessment | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:46:14Z | 0 | 0 | 0900006484bdba25 | |||
| EPA-HQ-OPP-2011-0885-0169 | EPA | None EPA-HQ-OPP-2011-0885 | Pyrethrins Domestic Animal Incident Summary | Supporting & Related Material | Risk Assessment | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:46:05Z | 0 | 0 | 0900006484bdba27 | |||
| EPA-HQ-OPP-2011-0885-0162 | EPA | None EPA-HQ-OPP-2011-0885 | Considerations for Bridging Bee-Related Effects and Exposure Data for the Pyrethroids and Pyrethrins | Supporting & Related Material | Risk Assessment | 2021-01-08T05:00:00Z | 2021 | 1 | 2021-01-09T02:01:46Z | 0 | 0 | 09000064849db7ad |
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;