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-2014-0768" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 10
| 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-2014-0768-0012 | EPA | None EPA-HQ-OPP-2014-0768 | Flufenpyr-ethyl Notice of Registration Review Case Closure Case Number 7262 | Supporting & Related Material | 2015-10-15T04:00:00Z | 2015 | 10 | 2015-10-16T00:33:28Z | 0 | 0 | 0900006481c8ce6b | ||||
| EPA-HQ-OPP-2014-0768-0011 | EPA | None EPA-HQ-OPP-2014-0768 | Registration Review Interim Decisions | Notice | 2015-10-15T04:00:00Z | 2015 | 10 | 2015-10-15T04:00:00Z | 2015-10-16T00:33:23Z | 2015-26299 | 0 | 0 | 0900006481ccd84f | ||
| EPA-HQ-OPP-2014-0768-0010 | EPA | None EPA-HQ-OPP-2014-0768 | Flufenpyr-ethyl Final Work Plan Registration Review Case Number 7262 | Supporting & Related Material | Work Plan | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-25T14:30:46Z | 0 | 0 | 0900006481ae506f | |||
| EPA-HQ-OPP-2014-0768-0002 | EPA | None EPA-HQ-OPP-2014-0768 | Flufenpyr-ethyl Preliminary Work Plan | Supporting & Related Material | Work Plan | 2014-12-19T05:00:00Z | 2014 | 12 | 2015-01-12T03:01:10Z | 0 | 0 | 090000648196e245 | |||
| EPA-HQ-OPP-2014-0768-0003 | EPA | None EPA-HQ-OPP-2014-0768 | Registration Review – Problem Formulation for the Ecological Risk and Drinking Water Exposure Assessments for Flufenpyr-ethyl. Wolf, Farruggia, Louie-Juzwiak. December 4, 2014. | Supporting & Related Material | Risk Assessment | 2014-12-19T05:00:00Z | 2014 | 12 | 2015-01-12T03:01:11Z | 0 | 0 | 090000648196dfdb | |||
| EPA-HQ-OPP-2014-0768-0006 | EPA | None EPA-HQ-OPP-2014-0768 | Data Review and Addendum for Flufenpyr-ethyl (S-3153 WDG Herbicide) on Terrestrial Animals, Aquatic Organisms, and Plants. Carey, Smith. November 4, 2003. | Supporting & Related Material | Risk Assessment | 2014-12-19T05:00:00Z | 2014 | 12 | 2015-01-12T03:01:11Z | 0 | 0 | 090000648196dfde | |||
| EPA-HQ-OPP-2014-0768-0004 | EPA | None EPA-HQ-OPP-2014-0768 | Flufenpyr-ethyl. Human Health Assessment Scoping Document and Preliminary Human Health Risk Assessment in Support of Registration Review. Tyler, Perron, Venkateshwara. November 26, 2014. | Supporting & Related Material | Risk Assessment | 2014-12-19T05:00:00Z | 2014 | 12 | 2015-01-12T03:01:10Z | 0 | 0 | 090000648196dfdc | |||
| EPA-HQ-OPP-2014-0768-0005 | EPA | None EPA-HQ-OPP-2014-0768 | New Chemical Review – Environmental Risk Assessment for the Proposed Uses of Flufenpyr Ethyl on Sugarcane and Soybeans. Carey, Nguyen, Erickson, Syslo. September 15, 2003. | Supporting & Related Material | Risk Assessment | 2014-12-19T05:00:00Z | 2014 | 12 | 2015-01-12T03:01:08Z | 0 | 0 | 090000648196dfdd | |||
| EPA-HQ-OPP-2014-0768-0007 | EPA | None EPA-HQ-OPP-2014-0768 | Flufenpyr-ethyl: Tier I Review of Human Incidents. Recore, Evans. August 20, 2014. | Supporting & Related Material | Risk Assessment | 2014-12-19T05:00:00Z | 2014 | 12 | 2015-01-12T03:01:10Z | 0 | 0 | 090000648196dfdf | |||
| EPA-HQ-OPP-2014-0768-0001 | EPA | None EPA-HQ-OPP-2014-0768 | Registration Reviews; Pesticides | Notice | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2015-02-18T04:59:59Z | 2015-02-13T03:03:08Z | 2014-29578 | 0 | 0 | 09000064819866fa |
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;