documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPP-2013-0154" 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), 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-0154-0097 | EPA | None EPA-HQ-OPP-2013-0154 | 10/29/14. Notice of EPA-DOW meeting on using the SOil Fumigant Exposure Assessment system (SOFEA). | Supporting & Related Material | Meeting Materials | 2014-12-03T05:00:00Z | 2014 | 12 | 2014-12-04T02:01:40Z | 0 | 0 | 090000648192c36b | |||
| EPA-HQ-OPP-2013-0154-0096 | EPA | None EPA-HQ-OPP-2013-0154 | 1,3 dichlororopropene (1,3-D) Generic Data Call In ID# GDCI-029001-1397 | Supporting & Related Material | Form | 2014-09-24T04:00:00Z | 2014 | 9 | 2014-09-25T01:09:50Z | 0 | 0 | 0900006481822496 | |||
| EPA-HQ-OPP-2013-0154-0095 | EPA | None EPA-HQ-OPP-2013-0154 | 02/10/2014. 1,3-D. Response to Comments on the Human Health Assessment Scoping Document for Registration Review. | Supporting & Related Material | Comment Response | 2014-04-04T04:00:00Z | 2014 | 4 | 2014-04-05T00:52:39Z | 0 | 0 | 0900006481691fea | |||
| EPA-HQ-OPP-2013-0154-0094 | EPA | None EPA-HQ-OPP-2013-0154 | 02/20/2014. EFED Response Comments Submitted to the Docket for 1,3-D (029001) Registration Review. | Supporting & Related Material | Comment Response | 2014-04-04T04:00:00Z | 2014 | 4 | 2014-04-05T00:52:39Z | 0 | 0 | 0900006481691fe9 | |||
| EPA-HQ-OPP-2013-0154-0093 | EPA | None EPA-HQ-OPP-2013-0154 | 02/07/2014. BEAD's Response to Dow AgroSciences Comments on EPA's 1,3-Dichloropropene Registration Review Docket, EPA-HQ-OPP-2013-0154. (11-22-2013), DP# 416858. | Supporting & Related Material | Comment Response | 2014-04-04T04:00:00Z | 2014 | 4 | 2014-04-05T00:52:39Z | 0 | 0 | 0900006481691fe8 | |||
| EPA-HQ-OPP-2013-0154-0092 | EPA | None EPA-HQ-OPP-2013-0154 | 03/25/2014. Pesticide Re-evaluation Division (PRD) Responses to Public Comments on the 1,3-Dichloropropene Preliminary Work Plan. | Supporting & Related Material | Comment Response | 2014-04-04T04:00:00Z | 2014 | 4 | 2014-04-05T00:52:39Z | 0 | 0 | 0900006481691fe6 | |||
| EPA-HQ-OPP-2013-0154-0091 | EPA | None EPA-HQ-OPP-2013-0154 | 03/26/2014. 1,3-Dichloropropene Final Work Plan. Registration Review Case Number 0328. | Supporting & Related Material | Work Plan | 2014-04-04T04:00:00Z | 2014 | 4 | 2014-04-05T00:52:39Z | 0 | 0 | 0900006481691fe3 |
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;