documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OPP-2011-0922" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_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-2011-0922-0055 | EPA | None EPA-HQ-OPP-2011-0922 | Review of 2017 Insect Resistance Management Monitoring Report for Cotton Lepidopteran Pests to Cry1F, Cry1Ac, Cry2Ab2, and Vip3A Proteins | Supporting & Related Material | Report | 2022-12-07T05:00:00Z | 2022 | 12 | 2022-12-08T05:26:18Z | 0 | 0 | 090000648551e7e3 | |||
| EPA-HQ-OPP-2011-0922-0051 | EPA | None EPA-HQ-OPP-2011-0922 | BPPD Review of ABSTC’s 2017 – 2021 Insect Resistance Managements (IRM) Compliance Assurance Program (CAP) Reports for Corn Borer-Protected Bt Corn, Corn Rootworm-Protected Bt Corn, Corn Borer/Corn RootwormProtected Stacked and Pyramided Bt Corn MRIDs: 50510101 (2017), 50924201 (2018), 51054101 (2019), 51440501(2020), 51787401 (2021) | Supporting & Related Material | 2022-08-16T04:00:00Z | 2022 | 8 | 2022-08-17T00:32:35Z | 0 | 0 | 0900006485204e7a | ||||
| EPA-HQ-OPP-2011-0922-0054 | EPA | None EPA-HQ-OPP-2011-0922 | Review of 2016 and 2017 Corn Rootworm Resistance Monitoring Data Submitted by Pioneer Hi-Bred and/or Dow AgroSciences (now Corteva). EPA Reg Nos. 68467-5, -6, -7, -16; 29964-4, -5, -6, -8, -10, -11. -14, -16, -21, -22, -23, -24 MRID#: 504554-01, 504565-01, 504577-01 | Supporting & Related Material | Data | 2022-08-16T04:00:00Z | 2022 | 8 | 2022-08-17T00:32:11Z | 0 | 0 | 0900006485204e7d | |||
| EPA-HQ-OPP-2011-0922-0052 | EPA | None EPA-HQ-OPP-2011-0922 | BPPD Review of 2020 Performance Series Sweet Corn Insect Resistance Management Compliance Assurance Program Report (EPA Reg. No. 524-658) | Supporting & Related Material | Report | 2022-08-16T04:00:00Z | 2022 | 8 | 2022-08-17T00:32:27Z | 0 | 0 | 0900006485204e7b | |||
| EPA-HQ-OPP-2011-0922-0053 | EPA | None EPA-HQ-OPP-2011-0922 | Review of 2017 Cry1A.105 and Cry2Ab2 Lepidopteran Monitoring Data Submitted by Monsanto for MON 89034 Bt Corn Registrations. EPA Reg. Numbers: 524-575, 524-576, 524-581, 524-595, 524-597, 524- 606, 524-612, 524-625, 524-626, 524-631, 524-632 MRID#s: 507412-01 | Supporting & Related Material | Data | 2022-08-16T04:00:00Z | 2022 | 8 | 2022-08-17T00:32:19Z | 0 | 0 | 0900006485204e7c |
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;