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-2020-0492" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date (date), comment_start_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-2020-0492-0005 | EPA | None EPA-HQ-OPP-2020-0492 | Assessment of the Benefits of Dicamba Use in Genetically Modified, Dicamba-Tolerant Cotton Production | Supporting & Related Material | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:41:54Z | 0 | 0 | 0900006484937094 | ||||
| EPA-HQ-OPP-2020-0492-0001 | EPA | None EPA-HQ-OPP-2020-0492 | Memorandum to Open Docket (Dicamba) | Other | Memorandum to Open a Docket | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-27T04:00:00Z | 2020-11-25T02:00:42Z | 0 | 0 | 0900006484938efd | ||
| EPA-HQ-OPP-2020-0492-0002 | EPA | None EPA-HQ-OPP-2020-0492 | Dicamba DGA and BAPMA Salts – 2020 Ecological Assessment of Dicamba Use on Dicamba-Tolerant (DT) Cotton and Soybean Including Effects Determinations for Federally Listed Threatened and Endangered Species | Supporting & Related Material | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:41:39Z | 0 | 0 | 09000064849365f9 | ||||
| EPA-HQ-OPP-2020-0492-0008 | EPA | None EPA-HQ-OPP-2020-0492 | Engenia Herbicide Registration Notice and Label 7969-472-20201027 | Supporting & Related Material | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:43:54Z | 0 | 0 | 09000064849378fc | ||||
| EPA-HQ-OPP-2020-0492-0010 | EPA | None EPA-HQ-OPP-2020-0492 | Xtendimax Registration Notice and Label 264-1210-20201027 | Supporting & Related Material | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:43:22Z | 0 | 0 | 09000064849381bf | ||||
| EPA-HQ-OPP-2020-0492-0003 | EPA | None EPA-HQ-OPP-2020-0492 | Dicamba Use on Genetically Modified Dicamba-Tolerant (DT) Cotton and Soybean: Incidents and Impacts to Users and Non-Users from Proposed Registrations | Supporting & Related Material | Risk Assessment | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:42:26Z | 0 | 0 | 0900006484937092 | |||
| EPA-HQ-OPP-2020-0492-0004 | EPA | None EPA-HQ-OPP-2020-0492 | Assessment of the Benefits of Dicamba Use in Genetically Modified, Dicamba-Tolerant Soybean Production | Supporting & Related Material | Risk Assessment | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:42:11Z | 0 | 0 | 0900006484937093 | |||
| EPA-HQ-OPP-2020-0492-0006 | EPA | None EPA-HQ-OPP-2020-0492 | Dicamba: Consideration of Newly Submitted Mutagenicity Data and Human Health Risk Assessment Summary | Supporting & Related Material | Risk Assessment | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:43:36Z | 0 | 0 | 090000648493759b | |||
| EPA-HQ-OPP-2020-0492-0009 | EPA | None EPA-HQ-OPP-2020-0492 | Tavium Registration Notice and Label 100-1623-20201027 | Supporting & Related Material | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:43:08Z | 0 | 0 | 09000064849381bd | ||||
| EPA-HQ-OPP-2020-0492-0007 | EPA | None EPA-HQ-OPP-2020-0492 | Memorandum Supporting Decision to Approve Registration for the Uses of Dicamba on Dicamba Tolerant Cotton and Soybean | Supporting & Related Material | Decision | 2020-10-27T04:00:00Z | 2020 | 10 | 2020-10-28T00:42:54Z | 0 | 0 | 09000064849377d0 |
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;