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-2009-0160" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0160-0004 | EPA | None EPA-HQ-OPP-2009-0160 | 7/16/09 - Fluridone Human Health Assessment Scoping Document in Support of Registration Review | Supporting & Related Material | 2009-09-23T04:00:00Z | 2009 | 9 | 2009-09-23T14:47:19Z | 0 | 0 | 0900006480a23e3d | ||||
| EPA-HQ-OPP-2009-0160-0005 | EPA | None EPA-HQ-OPP-2009-0160 | 2/25/10 - Appendix A: Food/Feed & Non-Food/Non-Feed Uses Considered for Registration Review Work Planning, Fluridone | Supporting & Related Material | 2009-09-23T04:00:00Z | 2009 | 9 | 2010-03-26T18:42:14Z | 0 | 0 | 0900006480a23e3e | ||||
| EPA-HQ-OPP-2009-0160-0002 | EPA | None EPA-HQ-OPP-2009-0160 | 9/14/09 - Fluridone Summary Document Registration Review | Supporting & Related Material | 2009-09-23T04:00:00Z | 2009 | 9 | 2009-09-23T14:47:16Z | 0 | 0 | 0900006480a23e3b | ||||
| EPA-HQ-OPP-2009-0160-0006 | EPA | None EPA-HQ-OPP-2009-0160 | 1/8/09 - Fluridone (112900), California Department of Pesticide Regulation Usage Data | Supporting & Related Material | 2009-09-23T04:00:00Z | 2009 | 9 | 2009-09-23T14:47:21Z | 0 | 0 | 0900006480a23e3f | ||||
| EPA-HQ-OPP-2009-0160-0003 | EPA | None EPA-HQ-OPP-2009-0160 | 8/20/09 - Registration Review: Preliminary Problem Formulation for Ecological Risk, Environmental Fate, and Endangered Species Assessment for Fluridone | Supporting & Related Material | 2009-09-23T04:00:00Z | 2009 | 9 | 2009-09-23T14:47:18Z | 0 | 0 | 0900006480a23e3c | ||||
| EPA-HQ-OPP-2009-0160-0001 | EPA | None EPA-HQ-OPP-2009-0160 | Registration Review; Pesticide Dockets Opened for Review and Comment (Fluridone) | Notice | Federal Register Document | 2009-09-23T04:00:00Z | 2009 | 9 | 2009-09-23T04:00:00Z | 2009-11-24T04:59:59Z | 2009-09-23T14:47:15Z | E9-22622 | 0 | 0 | 0900006480a29d05 |
| EPA-HQ-OPP-2009-0160-0007 | EPA | None EPA-HQ-OPP-2009-0160 | Reader’s Guide to Fluridone Docket # EPA-HQ-OPP-2009-0160 | Supporting & Related Material | 2009-09-23T04:00:00Z | 2009 | 9 | 2009-09-23T14:47:23Z | 0 | 0 | 0900006480a27cf9 |
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;