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-2009-0806" and posted_year = 2009 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-2009-0806-0002 | EPA | None EPA-HQ-OPP-2009-0806 | 12/14/09 - Propoxur Summary Document for Registration Review | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-23T13:55:42Z | 0 | 0 | 0900006480a59760 | ||||
| EPA-HQ-OPP-2009-0806-0007 | EPA | None EPA-HQ-OPP-2009-0806 | 11/9/09 - Active Propoxur Registrations as of 11/9/09 | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-23T13:55:43Z | 0 | 0 | 0900006480a5979f | ||||
| EPA-HQ-OPP-2009-0806-0003 | EPA | None EPA-HQ-OPP-2009-0806 | 10/16/09 - Registration Review: Preliminary Problem Formulation for Ecological Risk, Environmental Fate, Endangered Species, and Drinking Water Assessments for Propoxur | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-23T13:55:43Z | 0 | 0 | 0900006480a59761 | ||||
| EPA-HQ-OPP-2009-0806-0001 | EPA | None EPA-HQ-OPP-2009-0806 | Registration Review; Pesticide Dockets Opened for Review and Comment (Propoxur) | Notice | Federal Register Document | 2009-12-16T05:00:00Z | 2009 | 12 | 2009-12-16T05:00:00Z | 2010-02-17T04:59:59Z | 2010-07-23T13:55:43Z | E9-29895 | 0 | 0 | 0900006480a6bca5 |
| EPA-HQ-OPP-2009-0806-0008 | EPA | None EPA-HQ-OPP-2009-0806 | 6/11/09 - Updated Review of Propoxur Incident Reports | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-23T13:55:43Z | 0 | 0 | 0900006480a597a0 | ||||
| EPA-HQ-OPP-2009-0806-0005 | EPA | None EPA-HQ-OPP-2009-0806 | 10/7/09 - Use and Usage Information for Propoxur | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-23T13:55:43Z | 0 | 0 | 0900006480a59763 | ||||
| EPA-HQ-OPP-2009-0806-0010 | EPA | None EPA-HQ-OPP-2009-0806 | 7/31/96 - The HED Chapter of the Reregistration Eligibility Decision Document for Propoxur | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-23T13:55:43Z | 0 | 0 | 0900006480a597a2 | ||||
| EPA-HQ-OPP-2009-0806-0006 | EPA | None EPA-HQ-OPP-2009-0806 | 4/29/09 - Propoxur Appendix A: Label, Use, and Usage Table | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-23T13:55:43Z | 0 | 0 | 0900006480a59764 | ||||
| EPA-HQ-OPP-2009-0806-0009 | EPA | None EPA-HQ-OPP-2009-0806 | 7/10/96 - Ecological Effects Science Chapter for the Propoxur RED | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-23T13:55:43Z | 0 | 0 | 0900006480a597a1 | ||||
| EPA-HQ-OPP-2009-0806-0004 | EPA | None EPA-HQ-OPP-2009-0806 | 11/17/09 - Propoxur: Registration Review Scoping Document for Human Health Assessments | Supporting & Related Material | 2009-12-16T05:00:00Z | 2009 | 12 | 2010-07-23T13:55:43Z | 0 | 0 | 0900006480a59762 |
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;