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 = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_date (date), comment_start_date (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-0031 | EPA | None EPA-HQ-OPP-2020-0492 | AAPCO August 16th, 2022 EPA-OPP Dicamba Meeting Minutes | Supporting & Related Material | Meeting Materials | 2022-12-30T05:00:00Z | 2022 | 12 | 2023-01-11T19:27:02Z | 0 | 0 | 090000648554bf2a | |||
| EPA-HQ-OPP-2020-0492-0030 | EPA | None EPA-HQ-OPP-2020-0492 | Weed Science August 15th 2022 Dicamba Meeting EPA-OPP Notes | Supporting & Related Material | Meeting Materials | 2022-12-30T05:00:00Z | 2022 | 12 | 2023-01-11T19:26:30Z | 0 | 0 | 090000648554ae4f | |||
| EPA-HQ-OPP-2020-0492-0029 | EPA | None EPA-HQ-OPP-2020-0492 | United States Department of Justice and Parties to Certain Litigation; Transfer of Data | Notice | 2022-12-02T05:00:00Z | 2022 | 12 | 2022-12-02T05:00:00Z | 2022-12-02T15:53:07Z | 2022-26251 | 0 | 0 | 0900006485511b88 | ||
| EPA-HQ-OPP-2020-0492-0027 | EPA | None EPA-HQ-OPP-2020-0492 | Letter to Corteva Agriscience: Information Concerning Dicamba That Must Be Reported Pursuant to FIFRA Section 6(a)(2). September 9, 2022 | Supporting & Related Material | Letter | 2022-09-13T04:00:00Z | 2022 | 9 | 2022-09-14T00:38:04Z | 0 | 0 | 09000064852f0748 | |||
| EPA-HQ-OPP-2020-0492-0025 | EPA | None EPA-HQ-OPP-2020-0492 | Letter to BASF Corporation: Information Concerning Dicamba That Must Be Reported Pursuant to FIFRA Section 6(a)(2). September 9, 2022 | Supporting & Related Material | Letter | 2022-09-13T04:00:00Z | 2022 | 9 | 2022-09-14T00:38:23Z | 0 | 0 | 09000064852f0744 | |||
| EPA-HQ-OPP-2020-0492-0028 | EPA | None EPA-HQ-OPP-2020-0492 | Letter to Bayer Crop Science: Information Concerning Dicamba That Must Be Reported Pursuant to FIFRA Section 6(a)(2). September 9, 2022 | Supporting & Related Material | Letter | 2022-09-13T04:00:00Z | 2022 | 9 | 2022-09-14T00:38:13Z | 0 | 0 | 09000064852f0749 | |||
| EPA-HQ-OPP-2020-0492-0026 | EPA | None EPA-HQ-OPP-2020-0492 | Letter to Syngenta Crop Protection, LLC: Information Concerning Dicamba That Must Be Reported Pursuant to FIFRA Section 6(a)(2). September 9, 2022 | Supporting & Related Material | Letter | 2022-09-13T04:00:00Z | 2022 | 9 | 2022-09-14T00:37:55Z | 0 | 0 | 09000064852f0747 | |||
| EPA-HQ-OPP-2020-0492-0024 | EPA | None EPA-HQ-OPP-2020-0492 | Registration Amendment – Amended Terms and Conditions, Revised Labeling Including Revised Master and Collateral Labeling to Include Website Reference Product Name: ENGENIA HERBICIDE EPA Registration Number: 7969-472 Application Date: 1/12/2022 Decision Number: 581696 | Supporting & Related Material | 2022-03-15T04:00:00Z | 2022 | 3 | 2022-03-16T01:34:15Z | 0 | 0 | 0900006484fc8f9b | ||||
| EPA-HQ-OPP-2020-0492-0022 | EPA | None EPA-HQ-OPP-2020-0492 | Registration Amendment – Amended Terms and Conditions, Revised Labeling Including Revised Master and Collateral Labeling to Include Website Reference Product Name: A21472 PLUS VAPORGRIP TECHNOLOGY (ABN TAVIUM PLUS VAPORGRIP TECHNOLOGY) EPA Registration Number: 100-1623 Application Date: 12/28/2021 Decision Number: 581692 | Supporting & Related Material | Risk Assessment | 2022-03-15T04:00:00Z | 2022 | 3 | 2022-03-16T01:33:58Z | 0 | 0 | 0900006484fc992a | |||
| EPA-HQ-OPP-2020-0492-0023 | EPA | None EPA-HQ-OPP-2020-0492 | Registration Amendment – Amended Terms and Conditions, Revised Labeling Including Revised Master and Collateral Labeling to Include Website Reference Product Name: XTENDIMAX WITH VAPORGRIP TECHNOLOGY EPA Registration Number: 264-1210 Application Date: 1/10/2022 Decision Number: 581694 | Supporting & Related Material | 2022-03-15T04:00:00Z | 2022 | 3 | 2022-03-16T01:34:06Z | 0 | 0 | 0900006484fc8e8b |
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;