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-2007-1089" 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-2007-1089-0045 | EPA | None EPA-HQ-OPP-2007-1089 | DuPont Crop Protection, Comments to Federal Register/Vol. 78, No. 54/Wednesday, March 20, 2013, Pages 17201-17204 | Supporting & Related Material | Risk Assessment | 2014-12-24T05:00:00Z | 2014 | 12 | 2014-12-24T17:28:03Z | 0 | 0 | 0900006481966b60 | |||
| EPA-HQ-OPP-2007-1089-0044 | EPA | None EPA-HQ-OPP-2007-1089 | Registration Review Final and Interim Decisions | Notice | 2014-12-24T05:00:00Z | 2014 | 12 | 2014-12-24T05:00:00Z | 2014-12-24T17:27:29Z | 2014-30214 | 0 | 0 | 09000064819916ce | ||
| EPA-HQ-OPP-2007-1089-0043 | EPA | None EPA-HQ-OPP-2007-1089 | December 16, 2014 - Quizalofop-ethyl Quizalofop-p-ethyl Interim Registration Review Decision Case Number 7215 | Supporting & Related Material | Decision | 2014-12-23T05:00:00Z | 2014 | 12 | 2014-12-23T23:15:57Z | 0 | 0 | 090000648197dc36 | |||
| EPA-HQ-OPP-2007-1089-0042 | EPA | None EPA-HQ-OPP-2007-1089 | Quizalofop (quizalofop-ethyl and quizalofop-p-ethyl): Summary of Hazard and Science Policy Council (HASPOC) Meeting of October 4, 2012: Recommendations on the Requirement of the Neurotoxicity Battery and a Subchronic Inhalation Toxicity Study. | Supporting & Related Material | Risk Assessment | 2014-12-23T05:00:00Z | 2014 | 12 | 2014-12-23T21:08:30Z | 0 | 0 | 09000064819652ba | |||
| EPA-HQ-OPP-2007-1089-0040 | EPA | None EPA-HQ-OPP-2007-1089 | Registration Review Proposed Interim Decisions | Notice | 2014-07-23T04:00:00Z | 2014 | 7 | 2014-07-23T04:00:00Z | 2014-09-23T03:59:59Z | 2014-09-23T01:07:01Z | 2014-17244 | 0 | 0 | 09000064817d8f38 | |
| EPA-HQ-OPP-2007-1089-0039 | EPA | None EPA-HQ-OPP-2007-1089 | July 14, 2014 - Quizalofop-ethyl Quizalofop-p-ethyl Proposed Interim Registration Review Decision Case Number 7215 | Supporting & Related Material | Decision | 2014-07-18T04:00:00Z | 2014 | 7 | 2014-07-18T20:14:39Z | 0 | 0 | 09000064817adbbc | |||
| EPA-HQ-OPP-2007-1089-0037 | EPA | None EPA-HQ-OPP-2007-1089 | Refinements to the Quizalofop Preliminary Risk Assessment in Support of Registration Review March 20, 2014 | Supporting & Related Material | Risk Assessment | 2014-07-18T04:00:00Z | 2014 | 7 | 2014-07-18T20:14:38Z | 0 | 0 | 0900006481778e43 | |||
| EPA-HQ-OPP-2007-1089-0038 | EPA | None EPA-HQ-OPP-2007-1089 | Quizalofopethyl. Sunflower Tolerance Harmonization Memorandum July 2, 2014 | Supporting & Related Material | Risk Assessment | 2014-07-18T04:00:00Z | 2014 | 7 | 2014-07-18T20:14:39Z | 0 | 0 | 0900006481792d91 | |||
| EPA-HQ-OPP-2007-1089-0036 | EPA | None EPA-HQ-OPP-2007-1089 | Quizalofop-P-Ethyl: Review of Volatilization and Spray Drift Risk | Supporting & Related Material | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T21:01:44Z | 0 | 0 | 090000648165dd0f | ||||
| EPA-HQ-OPP-2007-1089-0035 | EPA | None EPA-HQ-OPP-2007-1089 | Response to Public Comments on the Quizalofop (PC: 128711) and Quizalofop-p-ethyl (PC: 18709) Registration Review Preliminary Rick Assessment | Supporting & Related Material | Comment Response | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T21:01:27Z | 0 | 0 | 090000648165c607 | |||
| EPA-HQ-OPP-2007-1089-0034 | EPA | None EPA-HQ-OPP-2007-1089 | Quizalofop Ethyl and Quizalofop-P-Ethyl, Response to Comments on the Human Health Risk Assessment for Registration Review | Supporting & Related Material | Risk Assessment | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T20:59:08Z | 0 | 0 | 090000648165dd0d |
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;