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-0907" 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), 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-0907-0046 | EPA | None EPA-HQ-OPP-2011-0907 | 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-05-05T04:00:00Z | 2021 | 5 | 2021-05-06T00:44:56Z | 0 | 0 | 0900006484a9eb61 | |||
| EPA-HQ-OPP-2011-0907-0040 | EPA | None EPA-HQ-OPP-2011-0907 | Data Evaluation Record on the Acute Toxicity of Tetramethrin to Fish (Cyprinodon variegatus) (MRID No. 49537903) | Supporting & Related Material | Evaluation | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-24T00:32:46Z | 0 | 0 | 0900006484a4d2db | |||
| EPA-HQ-OPP-2011-0907-0042 | EPA | None EPA-HQ-OPP-2011-0907 | Data Evaluation Report on the Acute Toxicity of MGK 2935 (10.33% a.i. Tetramethrin; 9.88% a.i. d-Phenothrin) to Terrestrial Vascular Plants: Seedling Emergence (MRID No. 49448901) | Supporting & Related Material | Report | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-24T00:31:38Z | 0 | 0 | 0900006484a4ddd3 | |||
| EPA-HQ-OPP-2011-0907-0041 | EPA | None EPA-HQ-OPP-2011-0907 | Data Evaluation Record 72-3(B) -- Acute EC50 Test with an Estuarine/Marine Mollusk Shell Deposition Study Guideline 850.1025 (MRID No. 49550301) | Supporting & Related Material | Study | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-24T00:32:15Z | 0 | 0 | 0900006484a4d74f | |||
| EPA-HQ-OPP-2011-0907-0044 | EPA | None EPA-HQ-OPP-2011-0907 | Data Evaluation Record 72-2 Acute LC50 Test with a Freshwater Invertebrate (MRID No. 49537902) | Supporting & Related Material | Evaluation | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-24T00:32:03Z | 0 | 0 | 0900006484a4ddda | |||
| EPA-HQ-OPP-2011-0907-0043 | EPA | None EPA-HQ-OPP-2011-0907 | Data Evaluation Report on the Acute Toxicity of Formulated MGK 2935 (10.33% a.i. Tetramethrin; 9.88% a.i. d-Phenothrin) to Terrestrial Vascular Plants: Vegetative Vigor (MRID No. 49448902) | Supporting & Related Material | Report | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-24T00:31:51Z | 0 | 0 | 0900006484a4ddd8 | |||
| EPA-HQ-OPP-2011-0907-0045 | EPA | None EPA-HQ-OPP-2011-0907 | Data Evaluation Record on the Acute Toxicity of Tetramethrin TEP to Fish (Oncorhynchus mykiss) (MRID No. 49537904) | Supporting & Related Material | Evaluation | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-24T00:32:58Z | 0 | 0 | 0900006484a4dde3 | |||
| EPA-HQ-OPP-2011-0907-0039 | EPA | None EPA-HQ-OPP-2011-0907 | Data Evaluation Record Acute LC50 Test With An Estuarine/Marine Shrimp 850.1035 (MRID No. 49455401) | Supporting & Related Material | Evaluation | 2021-03-23T04:00:00Z | 2021 | 3 | 2021-03-24T00:32:31Z | 0 | 0 | 0900006484a4d2da | |||
| EPA-HQ-OPP-2011-0907-0038 | EPA | None EPA-HQ-OPP-2011-0907 | Amendment to the Tetramethrin Interim Registration Review Decision, dated September 29, 2020 | Supporting & Related Material | Decision | 2021-02-26T05:00:00Z | 2021 | 2 | 2021-02-27T01:43:52Z | 0 | 0 | 0900006484a3283c |
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;