documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OPP-2012-0433" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-0433-0010 | EPA | None EPA-HQ-OPP-2012-0433 | 9/26/12 - Sulfometuron Methyl DuPont's Slides from FOCUS Meeting | Supporting & Related Material | Report | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:44:48Z | 0 | 0 | 0900006481188a72 | |||
| EPA-HQ-OPP-2012-0433-0002 | EPA | None EPA-HQ-OPP-2012-0433 | 12/5/12 - Registration Review: Preliminary Problem Formulation for Environmental Fate, Ecological Risk, Endangered Species, and Human Health Drinking Water Exposure Assessments for Sulfometuron Methyl. | Supporting & Related Material | Risk Assessment | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:44:07Z | 0 | 0 | 0900006481188661 | |||
| EPA-HQ-OPP-2012-0433-0008 | EPA | None EPA-HQ-OPP-2012-0433 | Sulfometuron Methyl Focus Meeting Minutes | Supporting & Related Material | Meeting Materials | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:44:07Z | 0 | 0 | 0900006481188a6f | |||
| EPA-HQ-OPP-2012-0433-0009 | EPA | None EPA-HQ-OPP-2012-0433 | 5/29/12 - Sulfometuron Methyl: PRD Label Data Report Food/Feed & Non-Food/Non-Feed Uses Considered in Registration Review Work Planning. (Dupont's Markup) | Supporting & Related Material | Report | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:44:40Z | 0 | 0 | 0900006481188a71 | |||
| EPA-HQ-OPP-2012-0433-0004 | EPA | None EPA-HQ-OPP-2012-0433 | 12/13/12 - BEAD Chemical Profile for Registration Review: Sulfometuron-methyl | Supporting & Related Material | Report | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:44:23Z | 0 | 0 | 0900006481188663 | |||
| EPA-HQ-OPP-2012-0433-0003 | EPA | None EPA-HQ-OPP-2012-0433 | 11/8/12 - Sulfometuron Methyl: Human Health Assessment Scoping Document in Support of Registration Review. | Supporting & Related Material | Risk Assessment | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:44:15Z | 0 | 0 | 0900006481188662 | |||
| EPA-HQ-OPP-2012-0433-0001 | EPA | None EPA-HQ-OPP-2012-0433 | Registration Reviews: Pesticide Dockets Opened for Review and Comment | Notice | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T05:00:00Z | 2013-02-13T04:59:59Z | 2013-02-13T03:01:36Z | 2012-30242 | 0 | 0 | 090000648118cec1 | |
| EPA-HQ-OPP-2012-0433-0006 | EPA | None EPA-HQ-OPP-2012-0433 | 5/29/12 - Sulfometuron Methyl: PRD Label Data Report Food/Feed & Non-Food/Non-Feed Uses Considered in Registration Review Work Planning. | Supporting & Related Material | Report | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:45:04Z | 0 | 0 | 0900006481188a6d | |||
| EPA-HQ-OPP-2012-0433-0007 | EPA | None EPA-HQ-OPP-2012-0433 | 9/26/12 - Sulfometuron Methyl Focus Meeting Sign In Sheet | Supporting & Related Material | Meeting Materials | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:43:58Z | 0 | 0 | 0900006481188a6e | |||
| EPA-HQ-OPP-2012-0433-0011 | EPA | None EPA-HQ-OPP-2012-0433 | 12/11/12 - Sulfometuron Methyl Preliminary Work Plan | Supporting & Related Material | Work Plan | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:44:56Z | 0 | 0 | 0900006481188a73 | |||
| EPA-HQ-OPP-2012-0433-0005 | EPA | None EPA-HQ-OPP-2012-0433 | 8/1/12 - Sulfometuron Methyl: Review of Human Incidents. | Supporting & Related Material | Report | 2012-12-14T05:00:00Z | 2012 | 12 | 2012-12-14T21:44:32Z | 0 | 0 | 0900006481188a6c |
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;