documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2014-0572" and posted_year = 2020 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-0572-0059 | EPA | None EPA-HQ-OPP-2014-0572 | OPP Meeting with Fenpyroximate Registrant October 7, 2020 | Supporting & Related Material | Meeting Materials | 2020-12-01T05:00:00Z | 2020 | 12 | 2020-12-02T01:34:02Z | 0 | 0 | 09000064848f7cbe | |||
| EPA-HQ-OPP-2014-0572-0049 | EPA | None EPA-HQ-OPP-2014-0572 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2020-09-02T04:00:00Z | 2020 | 9 | 2020-09-02T04:00:00Z | 2020-11-03T04:59:59Z | 2020-11-03T02:03:48Z | 2020-19374 | 0 | 0 | 090000648483b72d | |
| EPA-HQ-OPP-2014-0572-0050 | EPA | None EPA-HQ-OPP-2014-0572 | Fenpyroximate: Response to Comments on the EFED Draft Ecological Risk Assessment for Registration Review | Supporting & Related Material | Comment Response | 2020-09-02T04:00:00Z | 2020 | 9 | 2020-10-03T17:30:24Z | 0 | 0 | 090000648471bc8f | |||
| EPA-HQ-OPP-2014-0572-0052 | EPA | None EPA-HQ-OPP-2014-0572 | Response to Comments on the Fenpyroximate Draft Human Health Risk Assessment for Registration Review | Supporting & Related Material | Comment Response | 2020-09-02T04:00:00Z | 2020 | 9 | 2020-10-03T17:30:21Z | 0 | 0 | 090000648471bc91 | |||
| EPA-HQ-OPP-2014-0572-0051 | EPA | None EPA-HQ-OPP-2014-0572 | Fenpyroximate Proposed Interim Registration Review Decision Case Number 7432 | Supporting & Related Material | Decision | 2020-09-02T04:00:00Z | 2020 | 9 | 2020-10-03T17:30:23Z | 0 | 0 | 090000648471bc90 | |||
| EPA-HQ-OPP-2014-0572-0047 | EPA | None EPA-HQ-OPP-2014-0572 | Data Evaluation Record (DER) Addendum MRID: 45649816 DP Barcode: 457794 | Supporting & Related Material | Evaluation | 2020-06-16T04:00:00Z | 2020 | 6 | 2020-10-03T17:30:26Z | 0 | 0 | 09000064846b9108 | |||
| EPA-HQ-OPP-2014-0572-0048 | EPA | None EPA-HQ-OPP-2014-0572 | Data Evaluation Record (DER) Addendum MRID: 48735301 DP Barcode: 457794 | Supporting & Related Material | Evaluation | 2020-06-16T04:00:00Z | 2020 | 6 | 2020-10-03T17:28:24Z | 0 | 0 | 09000064846b9109 | |||
| EPA-HQ-OPP-2014-0572-0046 | EPA | None EPA-HQ-OPP-2014-0572 | Fenpyroximate - Response to Registrant's Data Waiver Request for Fish Bioconcentration Study (OCSPP Guideline 850.1730) | Supporting & Related Material | Waiver | 2020-06-16T04:00:00Z | 2020 | 6 | 2020-10-03T17:30:19Z | 0 | 0 | 09000064846b9107 |
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;