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-2008-0345" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, 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-2008-0345-0059 | EPA | None EPA-HQ-OPP-2008-0345 | Profenofos Registration Review Case Closure Case Number 2540 | Supporting & Related Material | Decision | 2017-09-20T04:00:00Z | 2017 | 9 | 2017-09-20T21:56:42Z | 0 | 0 | 0900006482583e66 | |||
| EPA-HQ-OPP-2008-0345-0060 | EPA | None EPA-HQ-OPP-2008-0345 | Cancellation Order for Certain Pesticide Registrations and/or Amendments to Terminate Uses; Correction | Supporting & Related Material | Decision | 2017-09-20T04:00:00Z | 2017 | 9 | 2017-09-20T21:56:43Z | 0 | 0 | 0900006482b3ce3a | |||
| EPA-HQ-OPP-2008-0345-0058 | EPA | None EPA-HQ-OPP-2008-0345 | Cancellation Order for Certain Pesticide Registrations and/or Amendments to Terminate Uses | Supporting & Related Material | Order | 2017-09-20T04:00:00Z | 2017 | 9 | 2017-09-20T21:56:42Z | 0 | 0 | 0900006482550ded | |||
| EPA-HQ-OPP-2008-0345-0057 | EPA | None EPA-HQ-OPP-2008-0345 | Registration Reviews: 22 Sulfonylurea Pesticides | Notice | 2017-09-20T04:00:00Z | 2017 | 9 | 2017-09-20T04:00:00Z | 2017-09-20T16:55:33Z | 2017-19458 | 0 | 0 | 0900006482b6386c | ||
| EPA-HQ-OPP-2008-0345-0056 | EPA | None EPA-HQ-OPP-2008-0345 | EPA Review of Profenofos Immunotoxicity Study in Mice | Supporting & Related Material | Report | 2017-02-14T05:00:00Z | 2017 | 2 | 2017-02-14T21:59:36Z | 0 | 0 | 09000064824baa9b | |||
| EPA-HQ-OPP-2008-0345-0052 | EPA | None EPA-HQ-OPP-2008-0345 | Federal Register Notice of Receipt of Requests to Voluntarily Cancel Certain Pesticide Registrations and Amend Registrations to Terminate Certain Uses | Supporting & Related Material | Publication - Previous/Related FR Notice | 2017-02-14T05:00:00Z | 2017 | 2 | 2017-02-14T21:59:34Z | 0 | 0 | 0900006482453a86 | |||
| EPA-HQ-OPP-2008-0345-0053 | EPA | None EPA-HQ-OPP-2008-0345 | Data Evaluation Reviews of Acute Oral Avian, Acute Freshwater Fish and Aquatic Vascular and Non-Vascular Plant Toxicity Studies Using Profenofos (MRID No.'s 48612103, 49290601, 48612102 and 48612104 | Supporting & Related Material | Study | 2017-02-14T05:00:00Z | 2017 | 2 | 2017-02-14T21:59:35Z | 0 | 0 | 09000064824baa3f | |||
| EPA-HQ-OPP-2008-0345-0055 | EPA | None EPA-HQ-OPP-2008-0345 | Organophosphate Pesticides: Summary of Hazard and Science Policy Council (HASPOC) Meeting on July 18, 2013. Recommendations on the Requirement for Immunotoxicity Studies for Organophosphate Chemicals | Supporting & Related Material | Waiver | 2017-02-14T05:00:00Z | 2017 | 2 | 2017-02-14T21:59:35Z | 0 | 0 | 09000064824baa9a | |||
| EPA-HQ-OPP-2008-0345-0054 | EPA | None EPA-HQ-OPP-2008-0345 | Data Evaluation Review: Profenofos - Adsorption and Desorption Properties in Soils. Final Report. MRID No. 48612101 | Supporting & Related Material | Evaluation | 2017-02-14T05:00:00Z | 2017 | 2 | 2017-02-14T21:59:35Z | 0 | 0 | 09000064824baa99 | |||
| EPA-HQ-OPP-2008-0345-0051 | EPA | None EPA-HQ-OPP-2008-0345 | Section 6(f) Request for Voluntary Cancellation of Profenofos Registrations, EPA Reg. Nos. 100-598 and 100-669 | Supporting & Related Material | Letter | 2017-02-14T05:00:00Z | 2017 | 2 | 2017-02-14T21:59:34Z | 0 | 0 | 0900006482337e00 |
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;