documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPP-2008-0883" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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-2008-0883-0007 | EPA | None EPA-HQ-OPP-2008-0883 | Tribufos Final Work Plan for Registration Review - August 2009 | Supporting & Related Material | 2009-08-19T04:00:00Z | 2009 | 8 | 2009-08-19T20:49:55Z | 0 | 0 | 0900006480a08694 | ||||
| EPA-HQ-OPP-2008-0883-0002 | EPA | None EPA-HQ-OPP-2008-0883 | Problem Formulation for Ecological Risk, Species, and Drinking Water Exposure Assessments in Support of the Registration Review of Tribufos - December 10, 2008 | Supporting & Related Material | 2009-03-18T04:00:00Z | 2009 | 3 | 2009-03-18T15:04:37Z | 0 | 0 | 0900006480902423 | ||||
| EPA-HQ-OPP-2008-0883-0003 | EPA | None EPA-HQ-OPP-2008-0883 | Tribufos: Revised Human Health Assessment Scoping Document in Support of Registration Review - February 20, 2009 | Supporting & Related Material | 2009-03-18T04:00:00Z | 2009 | 3 | 2009-03-18T15:04:38Z | 0 | 0 | 090000648090242b | ||||
| EPA-HQ-OPP-2008-0883-0005 | EPA | None EPA-HQ-OPP-2008-0883 | Screening Level Use Analysis (SLUA) for Tribufos - June 5, 2008 | Supporting & Related Material | 2009-03-18T04:00:00Z | 2009 | 3 | 2009-03-18T15:04:40Z | 0 | 0 | 0900006480902438 | ||||
| EPA-HQ-OPP-2008-0883-0004 | EPA | None EPA-HQ-OPP-2008-0883 | Tribufos Summary Document Registration Review: Initial Docket- March 2009 | Supporting & Related Material | 2009-03-18T04:00:00Z | 2009 | 3 | 2009-03-18T15:04:39Z | 0 | 0 | 0900006480902431 | ||||
| EPA-HQ-OPP-2008-0883-0001 | EPA | None EPA-HQ-OPP-2008-0883 | Registration Review: Pesticide Dockets Opened for Review and Comment | Notice | Federal Register Document | 2009-03-18T04:00:00Z | 2009 | 3 | 2009-03-18T04:00:00Z | 2009-05-19T03:59:59Z | 2009-03-18T15:04:19Z | E9-05824 | 0 | 0 | 090000648091bd18 |
| EPA-HQ-OPP-2008-0883-0006 | EPA | None EPA-HQ-OPP-2008-0883 | Appendix A for Tribufos - July 1, 2008 | Supporting & Related Material | 2009-03-18T04:00:00Z | 2009 | 3 | 2009-03-18T15:04:42Z | 0 | 0 | 0900006480902441 |
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;