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-2010-0384" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2010-0384-0030 | EPA | None EPA-HQ-OPP-2010-0384 | Bifenthrin OSRI Rationale submitted by EDSP Order Recipient (Part 1 of 4) | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 2010-10-07T04:00:00Z | 2010 | 10 | 2010-10-07T21:20:44Z | 0 | 0 | 0900006480b4ef0b | |||
| EPA-HQ-OPP-2010-0384-0031 | EPA | None EPA-HQ-OPP-2010-0384 | Bifenthrin EPA OSRI Response | Supporting & Related Material | Adjudication, Brief, Decision, Decree, Motion, Order | 2010-10-07T04:00:00Z | 2010 | 10 | 2010-10-07T21:20:47Z | 0 | 0 | 0900006480b5dc4c | |||
| EPA-HQ-OPP-2010-0384-0005 | EPA | None EPA-HQ-OPP-2010-0384 | Screening Level Use Analysis (SLUA) for Bifenthrin; October 19, 2010; Biological and Economic Analysis Division | Supporting & Related Material | Other | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T20:49:53Z | 0 | 0 | 0900006480b03435 | |||
| EPA-HQ-OPP-2010-0384-0001 | EPA | None EPA-HQ-OPP-2010-0384 | Registration Review; Pesticide Dockets Opened for Review and Comment | Notice | Federal Register Document | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T04:00:00Z | 2010-08-24T03:59:59Z | 2015-08-25T15:47:24Z | 2010-15212 | 0 | 0 | 0900006480b08ba0 |
| EPA-HQ-OPP-2010-0384-0008 | EPA | None EPA-HQ-OPP-2010-0384 | Bifenthrin: Review of Human Incidents; February 25, 2010; Health Effects Division | Supporting & Related Material | Other | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T20:49:58Z | 0 | 0 | 0900006480b03439 | |||
| EPA-HQ-OPP-2010-0384-0007 | EPA | None EPA-HQ-OPP-2010-0384 | Bifenthrin Human Health Assessment Scoping Document in Support of Registration Review; May 25, 2010; Health Effects Division | Supporting & Related Material | Other | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T20:49:57Z | 0 | 0 | 0900006480b03438 | |||
| EPA-HQ-OPP-2010-0384-0002 | EPA | None EPA-HQ-OPP-2010-0384 | Reader’s Guide to docket # EPA-HQ-OPP-2010-0384; June 23, 2010 | Supporting & Related Material | Other | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T20:49:48Z | 0 | 0 | 0900006480b03407 | |||
| EPA-HQ-OPP-2010-0384-0003 | EPA | None EPA-HQ-OPP-2010-0384 | Bifenthrin Summary Document Registration Review: Initial Docket June 2010 | Supporting & Related Material | Other | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T20:49:50Z | 0 | 0 | 0900006480b03433 | |||
| EPA-HQ-OPP-2010-0384-0004 | EPA | None EPA-HQ-OPP-2010-0384 | Appendix A; May 6, 2009; Biological and Economic Analysis Division | Supporting & Related Material | Other | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T20:49:52Z | 0 | 0 | 0900006480b03434 | |||
| EPA-HQ-OPP-2010-0384-0006 | EPA | None EPA-HQ-OPP-2010-0384 | Environmental Fate and Ecological Risk Assessment Problem Formulation in Support of Registration Review for Bifenthrin; June 09, 2010; Environmental Fate and Effects Division | Supporting & Related Material | Other | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T20:49:55Z | 0 | 0 | 0900006480b03437 |
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;