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-2011-0039" 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-0039-0152 | EPA | None EPA-HQ-OPP-2011-0039 | Registration Review Antimicrobial Draft Risk Assessment for Permethrin | Supporting & Related Material | Risk Assessment | 2021-11-01T04:00:00Z | 2021 | 11 | 2021-11-01T18:35:38Z | 0 | 0 | 0900006484d9d0b4 | |||
| EPA-HQ-OPP-2011-0039-0151 | EPA | None EPA-HQ-OPP-2011-0039 | 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-11-01T04:00:00Z | 2021 | 11 | 2021-11-01T18:34:42Z | 0 | 0 | 0900006484a9dd1e | |||
| EPA-HQ-OPP-2011-0039-0150 | EPA | None EPA-HQ-OPP-2011-0039 | Pesticide Registration Review: Draft Human Health and/or Ecological Risk Assessments for Several Pesticides | Notice | 2021-10-29T04:00:00Z | 2021 | 10 | 2021-10-29T04:00:00Z | 2021-12-29T04:59:59Z | 2021-12-29T02:00:12Z | 2021-23531 | 0 | 0 | 0900006484dfed73 | |
| EPA-HQ-OPP-2011-0039-0149 | EPA | None EPA-HQ-OPP-2011-0039 | Amendment to the Permethrin Interim Registration Review Decision, dated September 23, 2020 | Supporting & Related Material | Decision | 2021-02-26T05:00:00Z | 2021 | 2 | 2021-02-26T15:38:42Z | 0 | 0 | 0900006484a333b0 | |||
| EPA-HQ-OPP-2011-0039-0148 | EPA | None EPA-HQ-OPP-2011-0039 | Considerations for Bridging Bee-Related Effects and Exposure Data for the Pyrethroids and Pyrethrins | Supporting & Related Material | Risk Assessment | 2021-01-07T05:00:00Z | 2021 | 1 | 2021-01-07T21:12:07Z | 0 | 0 | 09000064849db7ac |
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;