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-2013-0249" and posted_year = 2013 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-2013-0249-0014 | EPA | None EPA-HQ-OPP-2013-0249 | Ametryn Final Work Plan 12.17.2013 Signed | Supporting & Related Material | 2013-12-23T05:00:00Z | 2013 | 12 | 2013-12-23T17:54:37Z | 0 | 0 | 09000064814cc955 | ||||
| EPA-HQ-OPP-2013-0249-0015 | EPA | None EPA-HQ-OPP-2013-0249 | Ametryn Response to Public Comments on the Registration Review- Preliminary Problem Formulation for Ecological Risk and Environmental Fate, Endangered Species, and Drinking Water Assessments for Ametryn | Supporting & Related Material | Comment Response | 2013-12-23T05:00:00Z | 2013 | 12 | 2013-12-23T17:54:44Z | 0 | 0 | 09000064814cc957 | |||
| EPA-HQ-OPP-2013-0249-0005 | EPA | None EPA-HQ-OPP-2013-0249 | BEAD Chemical Profile for Registration Review: Ametryn | Supporting & Related Material | Risk Assessment | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T16:21:42Z | 0 | 0 | 090000648132d1de | |||
| EPA-HQ-OPP-2013-0249-0004 | EPA | None EPA-HQ-OPP-2013-0249 | Ametryn: Review of Human Incident Reports | Supporting & Related Material | Memorandum | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T16:22:33Z | 0 | 0 | 090000648132d1dd | |||
| EPA-HQ-OPP-2013-0249-0006 | EPA | None EPA-HQ-OPP-2013-0249 | Ametryn Screening Level Usage Analysis | Supporting & Related Material | Fact/Data Sheet | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T16:22:21Z | 0 | 0 | 090000648132d1df | |||
| EPA-HQ-OPP-2013-0249-0008 | EPA | None EPA-HQ-OPP-2013-0249 | Ametryn Preliminary Work Plan | Supporting & Related Material | Work Plan | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T16:21:29Z | 0 | 0 | 090000648132d1e1 | |||
| EPA-HQ-OPP-2013-0249-0002 | EPA | None EPA-HQ-OPP-2013-0249 | Preliminary Problem Formulation for Environmental Fate, Ecological Risk, Endangered Species, and Human Health Drinking Water Exposure Assessments for Ametryn | Supporting & Related Material | Risk Assessment | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T16:21:55Z | 0 | 0 | 090000648132d1db | |||
| EPA-HQ-OPP-2013-0249-0003 | EPA | None EPA-HQ-OPP-2013-0249 | Ametryn. Human Health Risk Scoping Document in Support of Registration Review | Supporting & Related Material | Risk Assessment | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T16:22:08Z | 0 | 0 | 090000648132d1dc | |||
| EPA-HQ-OPP-2013-0249-0007 | EPA | None EPA-HQ-OPP-2013-0249 | PRD Label Data Report: Food/Feed & Non-Food/Non-Feed Uses Considered in Registration Review Work Planning | Supporting & Related Material | Report | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T16:21:12Z | 0 | 0 | 090000648132d1e0 | |||
| EPA-HQ-OPP-2013-0249-0001 | EPA | None EPA-HQ-OPP-2013-0249 | Registration Reviews: Pesticide Dockets Opened for Review and Comment; Announcement of Registration Review Case Closures | Notice | 2013-06-26T04:00:00Z | 2013 | 6 | 2013-06-26T04:00:00Z | 2013-08-27T03:59:59Z | 2013-11-23T02:02:38Z | 2013-15325 | 0 | 0 | 0900006481341e33 |
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;