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-2015-0417" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2015-0417-0005 | EPA | None EPA-HQ-OPP-2015-0417 | Environmental Risk Assessment for the FIFRA Section 3 Registration of the TGAI Bacillus amyloliquefaciens Strain PTA-4838 (EPA File Symbol 70664-T) and Two End-Use Products, Varnimo® WSP (EPA File Symbol 70664-A) and Varnimo®ST (EPA File Symbol 70664-L); Submission No. 958320, Decision No. 495952, DP Barcode No. 424149 | Supporting & Related Material | Risk Assessment | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-18T00:41:24Z | 0 | 0 | 0900006481fc7bd1 | |||
| EPA-HQ-OPP-2015-0417-0003 | EPA | None EPA-HQ-OPP-2015-0417 | Review of 5 Batch Enumeration, Product Chemistry, Manufacturing Process, Storage Stability, Sample Disposition, Discussion of Formation of Unintentional Ingredients, Certification of Limits, Acute Toxicity Studies ;Tolerance Exemption for Varnimo Technical (EPA Reg. No. 70644-L) Varnimo ST (EPA Reg. No. 70644-L) Submitted by Lidochem Inc. (Redactions to document made by Michael Mendelsohn, BPPD) | Supporting & Related Material | Risk Assessment | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-18T00:41:35Z | 0 | 0 | 0900006481fc743f | |||
| EPA-HQ-OPP-2015-0417-0002 | EPA | None EPA-HQ-OPP-2015-0417 | Public Participation for New Active Ingredient (Bacillus amyloliquefaciens strain PTA-4838) | Other | Public Participation | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-17T04:00:00Z | 2016-06-01T03:59:59Z | 2016-05-18T00:41:41Z | 0 | 0 | 0900006481fd51bc | |
| EPA-HQ-OPP-2015-0417-0004 | EPA | None EPA-HQ-OPP-2015-0417 | Review or Product ldentity; Manufacturing Process; Discussion of Formation of Unintentional Ingredients; Certification of Limits. Storage Stability; PH Acute; Toxicity Waiver and Tolerance Exemption for Varnimo WSP (EPA Reg. No. 70644-A) Submitted by Lidochem Inc. (Redaction to document made by Michael Mendelsohn, BPPD) | Supporting & Related Material | Risk Assessment | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-18T00:41:30Z | 0 | 0 | 0900006481fc7bd0 | |||
| EPA-HQ-OPP-2015-0417-0006 | EPA | None EPA-HQ-OPP-2015-0417 | Varnimo Technical Draft Label (EPA File Symbol 70664-A) | Supporting & Related Material | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-18T00:41:47Z | 0 | 0 | 0900006481fc7f21 | ||||
| EPA-HQ-OPP-2015-0417-0008 | EPA | None EPA-HQ-OPP-2015-0417 | Proposed Registration Decision for the New Active Ingredient Bacillus amyloliquefaciens Strain PTA-4838 | Supporting & Related Material | Decision | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-18T00:41:19Z | 0 | 0 | 0900006481fd51bb | |||
| EPA-HQ-OPP-2015-0417-0007 | EPA | None EPA-HQ-OPP-2015-0417 | Varnimo ST Draft Label (EPA Reg. No. 70644-) | Supporting & Related Material | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-18T00:41:13Z | 0 | 0 | 0900006481fc7f23 |
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;