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-2012-0859" and posted_year = 2017 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-2012-0859-0036 | EPA | None EPA-HQ-OPP-2012-0859 | Folpet: Data Evaluation Records for Three Environmental Fate Studies | Supporting & Related Material | Data | 2017-10-06T04:00:00Z | 2017 | 10 | 2019-03-31T12:01:01Z | 0 | 0 | 0900006482a8edea | |||
| EPA-HQ-OPP-2012-0859-0037 | EPA | None EPA-HQ-OPP-2012-0859 | Folpet: Review of a Study on Toxicity of Wood Paint Residues to the Honey Bee | Supporting & Related Material | Evaluation | 2017-10-06T04:00:00Z | 2017 | 10 | 2017-10-07T00:40:05Z | 0 | 0 | 0900006482a8f531 | |||
| EPA-HQ-OPP-2012-0859-0032 | EPA | None EPA-HQ-OPP-2012-0859 | Reviews of Folpet Environmental Fate Studies and Environmental Chemistry Analytical Methods (ECM) - Including the following: Transmittal of DERs for Six Folpet Fate Studies; MRID No's 49122701; 49122704; 49122705; 49122710; 49122712 and 49122709 | Supporting & Related Material | Report | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-10T01:34:28Z | 0 | 0 | 090000648248223d | |||
| EPA-HQ-OPP-2012-0859-0030 | EPA | None EPA-HQ-OPP-2012-0859 | EPA Review and Response to Extension Request for Submission of Generic Data on Antimicrobial Exposure Assessment Task Force II (AEATF) Pesticide Products | Supporting & Related Material | Data | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-10T01:33:59Z | 0 | 0 | 09000064824814e5 | |||
| EPA-HQ-OPP-2012-0859-0034 | EPA | None EPA-HQ-OPP-2012-0859 | Request for a Waiver of the Folpet Immunotoxicity Study and the Folpet: Summary of Hazard and Science Policy Council (HASPOC) Electronic Review of Folpet Immunotoxicity Waiver: Recommendations on the Requirement of an Immunotoxicity Study for Folpet. (Guidelins 870.7800) | Supporting & Related Material | Study | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-10T01:34:04Z | 0 | 0 | 09000064824825ec | |||
| EPA-HQ-OPP-2012-0859-0029 | EPA | None EPA-HQ-OPP-2012-0859 | Reviews of Folpet Ready Biodegradability and Activated Sludge Respiration Inhibition (ASRI) Studies, Guidelines 835.3110 and 850.3300, Respectively, and Review of Waiver Requests for Antimicrobial Biodegradation Data, Guidelines 835.3220, 835.3240, and 835.3280 | Supporting & Related Material | Data | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-10T01:33:46Z | 0 | 0 | 090000648247fac2 | |||
| EPA-HQ-OPP-2012-0859-0035 | EPA | None EPA-HQ-OPP-2012-0859 | Request for Waivers of the Folpet Occupational Inhalation and Dermal Exposure Studies (Guidelines 875.1200 and 875.1400) | Supporting & Related Material | Study | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-10T01:34:18Z | 0 | 0 | 0900006482482663 | |||
| EPA-HQ-OPP-2012-0859-0033 | EPA | None EPA-HQ-OPP-2012-0859 | Request for a Waiver of the Folpet Subchronic Inhalation Study and Folpet: Summary of Hazard and Science Policy Council (HASPOC) Meeting of April 10, 2014: Recommendations on the Need for a 90-day Inhalation Toxicity Study (Guideline 870.3465) | Supporting & Related Material | Study | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-10T01:34:09Z | 0 | 0 | 090000648248256e | |||
| EPA-HQ-OPP-2012-0859-0031 | EPA | None EPA-HQ-OPP-2012-0859 | Review of Folpet Soil Photolysis Study (Guideline 835.2410) MRID No. 49516501 | Supporting & Related Material | Study | 2017-02-09T05:00:00Z | 2017 | 2 | 2017-02-10T01:34:23Z | 0 | 0 | 0900006482481e6e |
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;