documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2012-0629" and posted_year = 2014 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)
| 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-2012-0629-0014 | EPA | None EPA-HQ-OPP-2012-0629 | Registration Decision for Fluensulfone A nematicide for use on fruiting vegetables (crop group 8) and cucurbits (crop group 9) | Supporting & Related Material | Decision | 2014-09-15T04:00:00Z | 2014 | 9 | 2014-09-15T20:04:54Z | 0 | 0 | 09000064818719ae | |||
| EPA-HQ-OPP-2012-0629-0007 | EPA | None EPA-HQ-OPP-2012-0629 | Proposed Registration Decision of the New Active lngredient Fluensulfone A nematicide for use on cucurbits (crop group 8) and fruiting vegetables (crop group 9) | Supporting & Related Material | Decision | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-26T00:35:53Z | 0 | 0 | 09000064817e30b0 | |||
| EPA-HQ-OPP-2012-0629-0003 | EPA | None EPA-HQ-OPP-2012-0629 | United States Environmental Protection Agency Environmental Assessment for the New Chemical Fluensulfone | Supporting & Related Material | Risk Assessment | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-26T00:35:53Z | 0 | 0 | 090000648177756e | |||
| EPA-HQ-OPP-2012-0629-0001 | EPA | None EPA-HQ-OPP-2012-0629 | Public Participation for the New Active Ingredient Fluensulfone for Control of Root-Knot (Meloidogyne spp.) and Lesion Nematodes (Pratylenchus spp.) on Cucurbits (Crop Group 9) and Fruiting Vegetables (Crop Group 8) | Other | Public Participation | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-25T04:00:00Z | 2014-08-26T03:59:59Z | 2014-08-26T01:03:35Z | 0 | 0 | 09000064817e30b2 | |
| EPA-HQ-OPP-2012-0629-0002 | EPA | None EPA-HQ-OPP-2012-0629 | Fluensulfone: Refined Drinking Water Exposure Assessment for Proposed New Registration for Uses on Cucurbits and Fruiting Vegetables Based on Ground Water Sources | Supporting & Related Material | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-26T00:35:52Z | 0 | 0 | 090000648177756c | ||||
| EPA-HQ-OPP-2012-0629-0005 | EPA | None EPA-HQ-OPP-2012-0629 | Fluensulfone: New Active Ingredient Human Health Risk Assessment of Proposed Uses on Cucurbit Vegetables and Fruiting Vegetables | Supporting & Related Material | Risk Assessment | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-26T00:35:53Z | 0 | 0 | 09000064817d49c2 | |||
| EPA-HQ-OPP-2012-0629-0004 | EPA | None EPA-HQ-OPP-2012-0629 | Draft Fluensulfone Technical Label For the Manufacturing Of Nematics Only | Supporting & Related Material | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-26T00:35:52Z | 0 | 0 | 09000064817b8c4f | ||||
| EPA-HQ-OPP-2012-0629-0006 | EPA | None EPA-HQ-OPP-2012-0629 | Fluensulfone 480EC Draft Label Nematicide Alternate Brand Name: NIMITZTM | Supporting & Related Material | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-26T00:35:52Z | 0 | 0 | 09000064817d98e8 |
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;