documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPP-2014-0293" and posted_year = 2015 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-0293-0399 | EPA | None EPA-HQ-OPP-2014-0293 | Notice of Unconditional Registration #524-618 for MON 87411 | Supporting & Related Material | Permit, Registration | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-10T20:25:06Z | 0 | 0 | 0900006481d0a382 | |||
| EPA-HQ-OPP-2014-0293-0398 | EPA | None EPA-HQ-OPP-2014-0293 | Final Regulatory Decision for New Active Ingredients Double-stranded Ribonucleic Acid Transcript Comprising a DvSnj7 Inverted Repeat Sequence Derived from Western Corn Rootworm (Diabrotica virgifera virgifera) and Bacillus thuringiensis Cry3Bbl Protein and the Genetic Material (vector PV-ZMIR10871) Necessary for Their Production in MON 87411 Corn (OECD Unique Identifier: MON-87411-9) | Supporting & Related Material | Decision | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-10T20:25:55Z | 0 | 0 | 0900006481d0a381 | |||
| EPA-HQ-OPP-2014-0293-0391 | EPA | None EPA-HQ-OPP-2014-0293 | Proposed Registration Decision for the New Active Ingredients DvSnf7 dsRNA and the Bt Cry3Bb1 Protein Expressed by MON 87411 Corn | Supporting & Related Material | Decision | 2015-09-29T04:00:00Z | 2015 | 9 | 2015-10-01T20:16:51Z | 0 | 0 | 0900006481ca147d | |||
| EPA-HQ-OPP-2014-0293-0390 | EPA | None EPA-HQ-OPP-2014-0293 | Environmental Risk Assessment for a FIFRA Section 3 Limited Seed Increase Registration of DvSnf7 Double Stranded RNA (dsRNA) and Cry3Bb1 Bacillus thuringiensis Derived Insecticidal Protein as Expressed in MON 87411 Maize; EPA File Symbol 524-ARI | Supporting & Related Material | Risk Assessment | 2015-09-29T04:00:00Z | 2015 | 9 | 2015-10-01T20:16:40Z | 0 | 0 | 0900006481c355ea | |||
| EPA-HQ-OPP-2014-0293-0388 | EPA | None EPA-HQ-OPP-2014-0293 | Public Participation for New Active Ingredient DvSnf7 dsRNA and Bt Cry3Bb1 Protein | Other | Public Participation | 2015-09-29T04:00:00Z | 2015 | 9 | 2015-09-29T04:00:00Z | 2015-10-15T03:59:59Z | 2015-10-15T01:31:25Z | 0 | 0 | 0900006481ca1729 | |
| EPA-HQ-OPP-2014-0293-0389 | EPA | None EPA-HQ-OPP-2014-0293 | Review of Product Characterization and Tox Data in Support for a Seed Increase Section 3 Registration of Plant-Incorporated Protectant (PIP) MON 87411 Corn Expressing New Active Ingredients DvSnf7 RNA and Bacillus thuringiensis Cry3Bb1 Insecticidal Protein. Response to the 75-day Deficiency Letter Based on Recommendations in the Report from the EPA's FIFRA SAP Meeting Held on January 28, 2014. | Supporting & Related Material | Risk Assessment | 2015-09-29T04:00:00Z | 2015 | 9 | 2015-10-01T20:16:35Z | 0 | 0 | 0900006481bc1933 |
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;