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-2014-0737" 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)
document_type 2
agency_id 1
- EPA 10
| 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-2014-0737-0947 | EPA | None EPA-HQ-OPP-2014-0737 | Benefits of Neonicotinoid Insecticide Use in the Pre-Bloom and Bloom Periods of Cotton | Supporting & Related Material | Risk Assessment | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-16T01:48:57Z | 0 | 0 | 0900006482cd61ca | |||
| EPA-HQ-OPP-2014-0737-0946 | EPA | None EPA-HQ-OPP-2014-0737 | Benefits of Neonicotinoid Insecticide Use in the Pre-Bloom and Bloom Periods of Citrus | Supporting & Related Material | Risk Assessment | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-16T01:48:37Z | 0 | 0 | 0900006482cd61c9 | |||
| EPA-HQ-OPP-2014-0737-0948 | EPA | None EPA-HQ-OPP-2014-0737 | Biological and Economic Analysis Division (BEAD) Response to Public Comments Submitted in Response to BEAD's Assessment entitled "Benefits of Neonicotinoid Seed Treatments to Soybean Production" Dated October 15, 2014 | Supporting & Related Material | Comment Response | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-16T01:48:47Z | 0 | 0 | 0900006482ce36e3 | |||
| EPA-HQ-OPP-2014-0737-0941 | EPA | None EPA-HQ-OPP-2014-0737 | Update to AgInfomatics Meeting Minutes from January 22, 2015 | Supporting & Related Material | Meeting Materials | 2015-03-27T04:00:00Z | 2015 | 3 | 2015-04-01T06:30:11Z | 0 | 0 | 0900006481a5ae37 | |||
| EPA-HQ-OPP-2014-0737-0939 | EPA | None EPA-HQ-OPP-2014-0737 | AgInfomatics Meeting with Industry List of Attendees January 22, 2015 | Supporting & Related Material | Meeting Materials | 2015-02-10T05:00:00Z | 2015 | 2 | 2015-02-10T21:13:43Z | 0 | 0 | 09000064819fa56c | |||
| EPA-HQ-OPP-2014-0737-0938 | EPA | None EPA-HQ-OPP-2014-0737 | AgInfomatics Meeting Presentation by Industry on Pollinator Study with Neonicintoid Insecticides | Supporting & Related Material | Meeting Materials | 2015-02-10T05:00:00Z | 2015 | 2 | 2015-02-10T21:13:43Z | 0 | 0 | 09000064819fa56b | |||
| EPA-HQ-OPP-2014-0737-0937 | EPA | None EPA-HQ-OPP-2014-0737 | DuPont/Pioneer Meeting Summary, December 2, 2014 | Supporting & Related Material | Meeting Materials | 2015-02-10T05:00:00Z | 2015 | 2 | 2015-02-10T21:13:43Z | 0 | 0 | 09000064819abc6d | |||
| EPA-HQ-OPP-2014-0737-0067 | EPA | None EPA-HQ-OPP-2014-0737 | Benefits of Neonicotinoid Seed Treatment to Soybean Production: Reopening of Comment Period | Notice | 2014-12-24T05:00:00Z | 2014 | 12 | 2014-12-24T05:00:00Z | 2015-01-24T04:59:59Z | 2015-04-16T02:04:17Z | 2014-30089 | 0 | 0 | 0900006481991427 | |
| EPA-HQ-OPP-2014-0737-0001 | EPA | None EPA-HQ-OPP-2014-0737 | Guidance: Benefits of Neonicotinoid Seed Treatments to Soybean Production | Notice | 2014-10-22T04:00:00Z | 2014 | 10 | 2014-10-22T04:00:00Z | 2014-12-23T04:59:59Z | 2016-03-18T14:00:19Z | 2014-24968 | 0 | 0 | 09000064818e82c0 | |
| EPA-HQ-OPP-2014-0737-0002 | EPA | None EPA-HQ-OPP-2014-0737 | 10/15/14 - Benefits of Neonicotinoid Seed Treatments to Soybean Production | Supporting & Related Material | 2014-10-22T04:00:00Z | 2014 | 10 | 2014-10-23T19:51:53Z | 0 | 0 | 09000064818dd420 |
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;