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-2008-0168" and posted_year = 2012 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-2008-0168-0015 | EPA | None EPA-HQ-OPP-2008-0168 | Amendment Letter: Metaflumizone Insecticide | Supporting & Related Material | Report | 2012-02-22T05:00:00Z | 2012 | 2 | 2012-02-22T14:22:33Z | 0 | 0 | 0900006480fb6fe0 | |||
| EPA-HQ-OPP-2008-0168-0013 | EPA | None EPA-HQ-OPP-2008-0168 | Conditional Registration of the Insecticide Metaflumizone on Citrus Fruits Tree Nuts and Grapes | Supporting & Related Material | Report | 2012-02-22T05:00:00Z | 2012 | 2 | 2012-02-22T14:22:32Z | 0 | 0 | 0900006480faf981 | |||
| EPA-HQ-OPP-2008-0168-0012 | EPA | None EPA-HQ-OPP-2008-0168 | Decision Memorandum for First US Food Registrations of the Insecticide Metaflumizone | Supporting & Related Material | Decision | 2012-02-22T05:00:00Z | 2012 | 2 | 2012-02-22T14:22:31Z | 0 | 0 | 0900006480faf97d | |||
| EPA-HQ-OPP-2008-0168-0011 | EPA | None EPA-HQ-OPP-2008-0168 | Pesticide Tolerances: Metaflumizone | Rule | 2012-02-22T05:00:00Z | 2012 | 2 | 2012-02-22T05:00:00Z | 2012-04-24T03:59:59Z | 2012-02-22T14:22:04Z | 2012-03795 | 0 | 0 | 0900006480fbd594 | |
| EPA-HQ-OPP-2008-0168-0014 | EPA | None EPA-HQ-OPP-2008-0168 | Registration Notice: Altrevin Fire Ant Bait Insecticide | Supporting & Related Material | 2012-02-22T05:00:00Z | 2012 | 2 | 2012-02-22T14:22:32Z | 0 | 0 | 0900006480fb6fdf | ||||
| EPA-HQ-OPP-2008-0168-0006 | EPA | None EPA-HQ-OPP-2008-0168 | Public Participation for Metaflumizone | Other | Public Participation | 2012-01-03T05:00:00Z | 2012 | 1 | 2012-01-03T05:00:00Z | 2012-02-03T04:59:59Z | 2012-01-03T20:44:43Z | 0 | 0 | 0900006480f8cfd6 | |
| EPA-HQ-OPP-2008-0168-0008 | EPA | None EPA-HQ-OPP-2008-0168 | Altrevin Fire Ant Bait Insecticide, Proposed End-Use Product Label | Supporting & Related Material | Report | 2012-01-03T05:00:00Z | 2012 | 1 | 2012-01-03T20:44:44Z | 0 | 0 | 0900006480f85b92 | |||
| EPA-HQ-OPP-2008-0168-0007 | EPA | None EPA-HQ-OPP-2008-0168 | Environmental Fate and Effect Division's (EFED) Risk Assessment for the Section 3 New Use Registration of Metaflumizone for Control of Fire Ants in Citrus/Nut Orchards, Grape Vineyards, Nurseries, and Agricultural/Residential Areas | Supporting & Related Material | Report | 2012-01-03T05:00:00Z | 2012 | 1 | 2012-01-03T20:44:44Z | 0 | 0 | 0900006480f85b91 | |||
| EPA-HQ-OPP-2008-0168-0009 | EPA | None EPA-HQ-OPP-2008-0168 | Metaflumizone. Revised Human-Health Risk Assessment Associated with a Section 3 Registration for a Fire Ant Bait for Application to Citrus, Tree Nuts, and Grape, and a new Section 3 Registration for a Fly Bait for Application around Industrial, Commercial, Agricultural, and Recreational Facilities/Structure and Premises | Supporting & Related Material | Report | 2012-01-03T05:00:00Z | 2012 | 1 | 2012-01-03T20:44:45Z | 0 | 0 | 0900006480f8d153 | |||
| EPA-HQ-OPP-2008-0168-0010 | EPA | None EPA-HQ-OPP-2008-0168 | Proposed Conditional Registration of the Insecticide, Metaflumizone, on Citrus Fruits, Tree Nuts, and Grapes | Supporting & Related Material | Report | 2012-01-03T05:00:00Z | 2012 | 1 | 2012-01-03T20:44:45Z | 0 | 0 | 0900006480f8d19b |
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;