documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "EPA" and docket_id = "EPA-HQ-OPP-2017-0402" 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)
document_type 3
agency_id 1
- EPA · 7 ✖
| 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-0402-0007 | EPA | None EPA-HQ-OPP-2017-0402 | Registration Decision for the New Active Ingredient Bacillus thuringiensis Cry51Aa2.834_16 and the Genetic Material (vector PV-GHIR508523) Necessary for its Production in MON 88702 Cotton (OECD Unique Identifer: MON-88702-4 | Supporting & Related Material | Decision | 2018-10-19T04:00:00Z | 2018 | 10 | 2018-12-04T21:33:04Z | 0 | 0 | 09000064836d7935 | |||
| EPA-HQ-OPP-2017-0402-0004 | EPA | None EPA-HQ-OPP-2017-0402 | Review of Molecular Characterization Data, Protein Expression Analyses, Human Health studies for the single-event Plant-Incorporated Protectant (PIP) MON 88702 in cotton [EPA No. 524-AUL; OECD Unique ID. MON-88702-4] expressing the mCry51Aa2 protein, in support for FIFRA Section 3 Seed Increase Registration and an associated Tolerance Petition Decisions. | Supporting & Related Material | Risk Assessment | 2017-12-29T05:00:00Z | 2017 | 12 | 2017-12-30T02:32:27Z | 0 | 0 | 0900006482d03268 | |||
| EPA-HQ-OPP-2017-0402-0005 | EPA | None EPA-HQ-OPP-2017-0402 | Proposed Registration Decision for the New Active Ingredient Bacillus thuringiensis Cry51 Aa2.834 16 and the Genetic Material (vector PV-GHIR508523) Necessary for its Production in MON 88702 Cotton (OECD Unique Identifier: MON-88702-4). | Supporting & Related Material | Risk Assessment | 2017-12-29T05:00:00Z | 2017 | 12 | 2017-12-30T02:31:57Z | 0 | 0 | 0900006482d72eb2 | |||
| EPA-HQ-OPP-2017-0402-0006 | EPA | None EPA-HQ-OPP-2017-0402 | Draft EPA Product Label Plant-Incorporated Protectant Label MON 88702 Insect-Protected Cotton - (OECD Unique Identifier : MON-887Ø2-4). EPA Registration No. 524-XXX. | Supporting & Related Material | 2017-12-29T05:00:00Z | 2017 | 12 | 2017-12-30T02:32:17Z | 0 | 0 | 0900006482d72eb4 | ||||
| EPA-HQ-OPP-2017-0402-0003 | EPA | None EPA-HQ-OPP-2017-0402 | Environmental Risk Assessment for a FIFRA Section 3 Seed Increase Registration of mCry5 l Aa2 Bacillus thuringiensis Derived Insecticidal Protein as Expressed in MON 88702 Cotton; EPA File Symbol 524-AUL; PC Code: 006999; Decision No. 528047; Submission No. I 001365; DP Barcode: 440489; MRIDs 50 l 330-08 through -18, 50 1330-20 through -23; Submitted by Monsanto Company | Supporting & Related Material | Risk Assessment | 2017-12-29T05:00:00Z | 2017 | 12 | 2017-12-30T02:32:07Z | 0 | 0 | 0900006482d0367f | |||
| EPA-HQ-OPP-2017-0402-0002 | EPA | None EPA-HQ-OPP-2017-0402 | Public Participation for New Plant-Incorporated Protectant (PIP): Bacillus thuringiensis Cry51Aa2.834_16 | Other | Public Participation | 2017-12-28T05:00:00Z | 2017 | 12 | 2017-12-29T05:00:00Z | 2018-01-14T04:59:59Z | 2018-01-02T21:15:04Z | 0 | 0 | 0900006482d7d39e | |
| EPA-HQ-OPP-2017-0402-0001 | EPA | None EPA-HQ-OPP-2017-0402 | Pesticide Product Registrations: New Active Ingredients | Notice | 2017-10-12T04:00:00Z | 2017 | 10 | 2017-10-12T04:00:00Z | 2017-11-14T04:59:59Z | 2017-10-13T01:14:05Z | 2017-22117 | 0 | 0 | 0900006482bc4b49 |
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;