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-2012-0391" and posted_year = 2014 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-2012-0391-0011 | EPA | None EPA-HQ-OPP-2012-0391 | GS-omega/kappa-Hxtx-Hv1a: Qualitative Human Health Assessment | Supporting & Related Material | Risk Assessment | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T16:54:21Z | 0 | 0 | 09000064814b43d1 | |||
| EPA-HQ-OPP-2012-0391-0013 | EPA | None EPA-HQ-OPP-2012-0391 | Draft Label- VST-006325 TGAI-For Manufactoring Use Only | Supporting & Related Material | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T16:55:30Z | 0 | 0 | 09000064814f04a7 | ||||
| EPA-HQ-OPP-2012-0391-0012 | EPA | None EPA-HQ-OPP-2012-0391 | Draft Label of VST-006330 Master Label, containing: Sublabel A: Greenhouse and Field Use Sublabel B: Home & Garden Use | Supporting & Related Material | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T16:53:45Z | 0 | 0 | 09000064814ee850 | ||||
| EPA-HQ-OPP-2012-0391-0006 | EPA | None EPA-HQ-OPP-2012-0391 | VERSITUDE™ Peptide: Summary of Hazard and Science Policy Council (HASPOC) Electronic Review: Recommendations on the Need for Additional Toxicity Studies | Supporting & Related Material | Report | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T16:53:29Z | 0 | 0 | 090000648148d155 | |||
| EPA-HQ-OPP-2012-0391-0007 | EPA | None EPA-HQ-OPP-2012-0391 | Ecological Risk Assessment for the Proposed New Chemical Registration of GSU- ACTX-Hvla-SEQ2 (Versutide™ peptide) on Vegetables and Cole Crops; Herbs, Spices, and Mints; Pasture and Hay Crops; Fruit, Nut, and Vine Crops; Field Crops; Commercial Flowers and Ornamental Plants; Forest, Shade Tree, and Nursery Stock; and Turf | Supporting & Related Material | Risk Assessment | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T16:54:04Z | 0 | 0 | 090000648148d157 | |||
| EPA-HQ-OPP-2012-0391-0009 | EPA | None EPA-HQ-OPP-2012-0391 | Ecological Risk Assessment for the Proposed New Chemical Registration of GS-U-ACTX-Hv1a-SEQ2 (Versutide™ peptide) -AMENDMENT | Supporting & Related Material | Risk Assessment | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T16:55:12Z | 0 | 0 | 090000648148d715 | |||
| EPA-HQ-OPP-2012-0391-0008 | EPA | None EPA-HQ-OPP-2012-0391 | Ecological Risk Assessment for the Proposed New Chemical Registration of GS-U-ACTX-Hv1a-SEQ2 (Versutide™ peptide) | Supporting & Related Material | Risk Assessment | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T16:54:56Z | 0 | 0 | 090000648148d6ca | |||
| EPA-HQ-OPP-2012-0391-0005 | EPA | None EPA-HQ-OPP-2012-0391 | Public Participation for New Active Ingredient GS-U-ACTX-Hv1a-SEQ2 (Versutide™ peptide) | Other | Public Participation | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T05:00:00Z | 2014-01-30T04:59:59Z | 2014-01-29T20:20:57Z | 0 | 0 | 0900006481504cfb | |
| EPA-HQ-OPP-2012-0391-0010 | EPA | None EPA-HQ-OPP-2012-0391 | Ecological Risk Assessment for the Proposed New Chemical Registration of GS-U-ACTX-Hv1a-SEQ2 (Versutide™ peptide) - AMENDMENT 2 | Supporting & Related Material | Risk Assessment | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T16:54:39Z | 0 | 0 | 09000064814ab737 | |||
| EPA-HQ-OPP-2012-0391-0014 | EPA | None EPA-HQ-OPP-2012-0391 | Draft GS-omega/kappa-Hxtx-Hv1a Biopesticides Registration Action Document (BRAD) for Versitude™ peptide | Supporting & Related Material | Risk Assessment | 2014-01-14T05:00:00Z | 2014 | 1 | 2014-01-14T16:55:50Z | 0 | 0 | 09000064814fba3f |
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;