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-2017-0116" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2017-0116-0009 | EPA | None EPA-HQ-OPP-2017-0116 | Notice of Pesticide Unconditional Registration and Product Label for ISCA Lobesia MP Registration No. 80286-24 | Supporting & Related Material | Permit, Registration | 2017-09-28T04:00:00Z | 2017 | 9 | 2017-09-29T00:49:10Z | 0 | 0 | 0900006482b2d6a4 | |||
| EPA-HQ-OPP-2017-0116-0008 | EPA | None EPA-HQ-OPP-2017-0116 | Registration Decision for the New Active Ingredient (E)-7Dodecenyl Acetate | Supporting & Related Material | Decision | 2017-09-28T04:00:00Z | 2017 | 9 | 2017-09-29T00:49:19Z | 0 | 0 | 090000648293ca04 | |||
| EPA-HQ-OPP-2017-0116-0010 | EPA | None EPA-HQ-OPP-2017-0116 | Notice of Pesticide Unconditional Registration and Product Label for Splat Lobesia Registration No. 80286-25 | Supporting & Related Material | Permit, Registration | 2017-09-28T04:00:00Z | 2017 | 9 | 2017-09-29T00:49:28Z | 0 | 0 | 0900006482b2d6a5 | |||
| EPA-HQ-OPP-2017-0116-0003 | EPA | None EPA-HQ-OPP-2017-0116 | Draft Product Label for ISCA Lobesia MP | Supporting & Related Material | Fact/Data Sheet | 2017-06-28T04:00:00Z | 2017 | 6 | 2017-06-29T05:05:10Z | 0 | 0 | 090000648257ba27 | |||
| EPA-HQ-OPP-2017-0116-0004 | EPA | None EPA-HQ-OPP-2017-0116 | Draft Product Label for Splat Lobesia | Supporting & Related Material | Fact/Data Sheet | 2017-06-28T04:00:00Z | 2017 | 6 | 2017-06-29T05:05:16Z | 0 | 0 | 090000648257ba28 | |||
| EPA-HQ-OPP-2017-0116-0006 | EPA | None EPA-HQ-OPP-2017-0116 | Proposed Registration Decision for the New Active Ingredient (E)-7-Dodecenyl Acetate | Supporting & Related Material | Decision | 2017-06-28T04:00:00Z | 2017 | 6 | 2017-06-29T05:04:59Z | 0 | 0 | 09000064826f5f43 | |||
| EPA-HQ-OPP-2017-0116-0005 | EPA | None EPA-HQ-OPP-2017-0116 | Application for Registration of a Manufacturing Use Product (ISCA Lobesia MP) and an End-Use Product (SPLAT Lobesia) | Supporting & Related Material | Risk Assessment | 2017-06-28T04:00:00Z | 2017 | 6 | 2017-06-29T05:05:04Z | 0 | 0 | 09000064826dc6f8 | |||
| EPA-HQ-OPP-2017-0116-0002 | EPA | None EPA-HQ-OPP-2017-0116 | Public Participation for New Active Ingredient (E)-7-Dodecenyl Acetate); SCLP; 1 MP (ISCA Lobesia MP); 1 EP (SPLAT Lobesia) | Other | Public Participation | 2017-06-28T04:00:00Z | 2017 | 6 | 2017-06-28T04:00:00Z | 2017-07-14T03:59:59Z | 2017-06-29T05:04:53Z | 0 | 0 | 09000064827aedf5 | |
| EPA-HQ-OPP-2017-0116-0001 | EPA | None EPA-HQ-OPP-2017-0116 | Pesticide Product Registrations: Receipt of Applications for New Active Ingredients | Notice | Notice of Receipt of Petition | 2017-06-08T04:00:00Z | 2017 | 6 | 2017-06-08T04:00:00Z | 2017-07-11T03:59:59Z | 2017-06-09T04:14:10Z | 2017-11931 | 0 | 0 | 09000064826b0bd8 |
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;