documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPP-2011-0581" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: last_modified, 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-0581-0010 | EPA | None EPA-HQ-OPP-2011-0581 | 6/14/11 - Appendix A for Thiamethoxam | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:35Z | 0 | 0 | 0900006480f86595 | |||
| EPA-HQ-OPP-2011-0581-0011 | EPA | None EPA-HQ-OPP-2011-0581 | 8/19/11 - Summary of Registered Antimicrobial Uses of Thiamethoxam in Support of the Registration Review Summary Documents | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:35Z | 0 | 0 | 0900006480f86596 | |||
| EPA-HQ-OPP-2011-0581-0002 | EPA | None EPA-HQ-OPP-2011-0581 | 12/20/11 - Thiamethoxam Summary Document Registration Review Initial Docket | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:31Z | 0 | 0 | 0900006480f85cc5 | |||
| EPA-HQ-OPP-2011-0581-0001 | EPA | None EPA-HQ-OPP-2011-0581 | Registration Review; Open Pesticide Dockets and Availability of Final Work Plans for Certain Pesticides | Notice | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T05:00:00Z | 2012-02-22T04:59:59Z | 2013-07-13T01:02:05Z | 2011-32658 | 0 | 0 | 0900006480f86c72 | |
| EPA-HQ-OPP-2011-0581-0003 | EPA | None EPA-HQ-OPP-2011-0581 | 12/13/11 - Registration Review: Preliminary Problem Formulation for the Environmental Fate, Ecological Risk, Endangered Species, and Drinking Water Exposure Assessments for Thiamethoxam. | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:32Z | 0 | 0 | 0900006480f8658e | |||
| EPA-HQ-OPP-2011-0581-0004 | EPA | None EPA-HQ-OPP-2011-0581 | 12/13/11 - Problem Formulation for the Environmental Fate and Ecological Risk, Endangered Species, and Drinking Water Exposure Assessments in Support of the Registration Review of Thiamethoxarn Antimicrobial Uses. | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:32Z | 0 | 0 | 0900006480f8658f | |||
| EPA-HQ-OPP-2011-0581-0005 | EPA | None EPA-HQ-OPP-2011-0581 | 12/16/11 - Thiamethoxam. Human Health Assessment Scoping Document in Support of Registration Review. | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:32Z | 0 | 0 | 0900006480f86590 | |||
| EPA-HQ-OPP-2011-0581-0009 | EPA | None EPA-HQ-OPP-2011-0581 | 4/8/11 - Screening Level Use Analysis (SLUA) for Thiamethoxam | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:35Z | 0 | 0 | 0900006480f86594 | |||
| EPA-HQ-OPP-2011-0581-0007 | EPA | None EPA-HQ-OPP-2011-0581 | 8/4/11 - Thiamethoxam: Review of Human Incidents | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:34Z | 0 | 0 | 0900006480f86592 | |||
| EPA-HQ-OPP-2011-0581-0008 | EPA | None EPA-HQ-OPP-2011-0581 | 7/6/11 - BEAD Chemical Profile for Registration Review: Thiamethoxam (060109) | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:34Z | 0 | 0 | 0900006480f86593 | |||
| EPA-HQ-OPP-2011-0581-0006 | EPA | None EPA-HQ-OPP-2011-0581 | 12/13/11 - Thiamethoxam Registration Review: Human Health Scoping Information Regarding the Wood Preservative Uses (Post Peer Review Update) | Supporting & Related Material | Report | 2011-12-21T05:00:00Z | 2011 | 12 | 2011-12-21T20:38:34Z | 0 | 0 | 0900006480f86591 |
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;