documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2007-0437" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, withdrawn, 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-0437-0029 | EPA | None EPA-HQ-OPP-2007-0437 | Petitions: Residues of Pesticide Chemicals in or on Various Commodities | Proposed Rule | 2015-11-25T00:00:00Z | 2015 | 11 | 2016-01-09T21:37:03Z | 0 | 1 | 0900006481d73a48 | ||||
| EPA-HQ-OPP-2007-0437-0027 | EPA | None EPA-HQ-OPP-2007-0437 | Registration Review Proposed Interim Decisions; Availability | Notice | 2015-08-11T04:00:00Z | 2015 | 8 | 2015-08-11T04:00:00Z | 2015-10-10T03:59:59Z | 2016-01-07T22:01:01Z | 2015-19590 | 0 | 0 | 0900006481bd781e | |
| EPA-HQ-OPP-2007-0437-0021 | EPA | None EPA-HQ-OPP-2007-0437 | Fenoxaprop and Fenoxaprop-ethyl Usage Information for Risk Assessment (PC # 129092 & 128701) | Supporting & Related Material | Risk Assessment | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T17:14:08Z | 0 | 0 | 0900006481b264e1 | |||
| EPA-HQ-OPP-2007-0437-0022 | EPA | None EPA-HQ-OPP-2007-0437 | EFED Response to Comments on the Environmental Fate and Ecological Risk Assessment for the Registration Review of Fenoxaprop-p-ethyl | Supporting & Related Material | Comment Response | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T17:14:08Z | 0 | 0 | 0900006481b264e3 | |||
| EPA-HQ-OPP-2007-0437-0023 | EPA | None EPA-HQ-OPP-2007-0437 | Fenoxaprop-p-ethyl: Response to Registrant Comments from Bayer Crop Science on the Draft Preliminary Risk Assessment and Proposed New Use on Grass Grown for Seed | Supporting & Related Material | Comment Response | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T17:14:09Z | 0 | 0 | 0900006481b264e5 | |||
| EPA-HQ-OPP-2007-0437-0025 | EPA | None EPA-HQ-OPP-2007-0437 | Fenoxaprop-p-ethyl Proposed Interim Decision Case Number 7209 | Supporting & Related Material | Decision | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T17:14:11Z | 0 | 0 | 0900006481b3b2ae | |||
| EPA-HQ-OPP-2007-0437-0020 | EPA | None EPA-HQ-OPP-2007-0437 | Addendum to the Ecological Risk Assessment for Fenoxaprop-p-ethyl | Supporting & Related Material | Risk Assessment | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T17:14:06Z | 0 | 0 | 0900006481b264df | |||
| EPA-HQ-OPP-2007-0437-0024 | EPA | None EPA-HQ-OPP-2007-0437 | Fenoxaprop and Fenoxaprop-ethyl Qualitative Benefits Assessment (PC # 129092 & 128701) | Supporting & Related Material | Risk Assessment | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T17:14:10Z | 0 | 0 | 0900006481b3750c | |||
| EPA-HQ-OPP-2007-0437-0026 | EPA | None EPA-HQ-OPP-2007-0437 | Fenoxaprop Registrant May 5, 2015 Meeting Summary | Supporting & Related Material | Meeting Materials | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T17:14:11Z | 0 | 0 | 0900006481b3b2b0 |
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;