documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OPP-2014-0898" 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-2014-0898-0007 | EPA | None EPA-HQ-OPP-2014-0898 | Registration Decision for a New Method of Delivery (First Foliar Spray Use) of Methyl Salicylate Update to the Previously Issued Methyl Salicylate - Reregistration Eligibility Decision (RED) of November, 2005. | Supporting & Related Material | Decision | 2015-11-12T05:00:00Z | 2015 | 11 | 2015-11-13T01:37:05Z | 0 | 0 | 0900006481cb5e02 | |||
| EPA-HQ-OPP-2014-0898-0008 | EPA | None EPA-HQ-OPP-2014-0898 | Notice of Unconditional Pesticide Registration and Product Label for the Product Leap Biological Insecticide Emulsifiable Suspension. | Supporting & Related Material | Permit, Registration | 2015-11-12T05:00:00Z | 2015 | 11 | 2015-11-13T01:37:13Z | 0 | 0 | 0900006481cb5e03 | |||
| EPA-HQ-OPP-2014-0898-0004 | EPA | None EPA-HQ-OPP-2014-0898 | Exposure and Risk Considerations for Methyl Salicylate for use on Pre-flowering Bell Peppers and Tomatoes | Supporting & Related Material | Risk Assessment | 2015-09-10T04:00:00Z | 2015 | 9 | 2015-09-11T01:33:41Z | 0 | 0 | 0900006481c54a9f | |||
| EPA-HQ-OPP-2014-0898-0003 | EPA | None EPA-HQ-OPP-2014-0898 | Application for Registration of VBC-60347 Biological Insecticide Emulsifiable Suspension, an end use product that contains Methyl Salicylate | Supporting & Related Material | Application | 2015-09-10T04:00:00Z | 2015 | 9 | 2015-09-11T01:33:27Z | 0 | 0 | 0900006481c50e0d | |||
| EPA-HQ-OPP-2014-0898-0006 | EPA | None EPA-HQ-OPP-2014-0898 | Draft Registration Decision for New Method of Delivery (First Foliar Spray Use) for Methyl Salicylate | Supporting & Related Material | Decision | 2015-09-10T04:00:00Z | 2015 | 9 | 2015-09-11T01:33:56Z | 0 | 0 | 0900006481c58a5e | |||
| EPA-HQ-OPP-2014-0898-0002 | EPA | None EPA-HQ-OPP-2014-0898 | Public Participation Posting Memo for Methyl Salicylate 20150910 | Other | Public Participation | 2015-09-10T04:00:00Z | 2015 | 9 | 2015-09-10T04:00:00Z | 2015-09-25T03:59:59Z | 2015-09-11T01:33:11Z | 0 | 0 | 0900006481c61e85 | |
| EPA-HQ-OPP-2014-0898-0005 | EPA | None EPA-HQ-OPP-2014-0898 | Draft Product Label for VBC-60347 Biological Insecticide Emulsifiable Concentrate (EPA File Symbol 73059-LNN) | Supporting & Related Material | 2015-09-10T04:00:00Z | 2015 | 9 | 2015-09-11T01:33:33Z | 0 | 0 | 0900006481c54aa2 | ||||
| EPA-HQ-OPP-2014-0898-0001 | EPA | None EPA-HQ-OPP-2014-0898 | Pesticide Product Registrations: Applications for New Uses | Notice | 2015-01-14T05:00:00Z | 2015 | 1 | 2015-01-14T05:00:00Z | 2015-02-14T04:59:59Z | 2015-01-14T21:45:59Z | 2015-00502 | 0 | 0 | 09000064819c9d26 |
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;