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-2013-0779" and posted_year = 2021 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-2013-0779-0048 | EPA | None EPA-HQ-OPP-2013-0779 | Assessment of the Benefits of Mesotrione (PC# 122990) and Impacts of Potential Mitigations | Supporting & Related Material | Risk Assessment | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:48:06Z | 0 | 0 | 0900006484ba73e2 | |||
| EPA-HQ-OPP-2013-0779-0047 | EPA | None EPA-HQ-OPP-2013-0779 | Pesticide Registration Review: Proposed Interim Decisions for Several Pesticides | Notice | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-03T04:00:00Z | 2021-10-05T03:59:59Z | 2021-10-09T01:00:34Z | 2021-16516 | 0 | 0 | 0900006484c255d1 | |
| EPA-HQ-OPP-2013-0779-0050 | EPA | None EPA-HQ-OPP-2013-0779 | P-Hydroxyphenyl-Pyruvate Dioxygenase (HPPD) Inhibitors Cumulative Risk Assessment: Benzobicyclon, Bicyclopyrone, Isoxaflutole, Mesotrione, Pyrasulfotole, Tembotrione, Tolpyralate, and Topramezone | Supporting & Related Material | Risk Assessment | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:48:15Z | 0 | 0 | 0900006484c04fe5 | |||
| EPA-HQ-OPP-2013-0779-0051 | EPA | None EPA-HQ-OPP-2013-0779 | Mesotrione Proposed Interim Registration Review Decision Case Number 7256 | Supporting & Related Material | Decision | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:48:33Z | 0 | 0 | 0900006484c05d78 | |||
| EPA-HQ-OPP-2013-0779-0049 | EPA | None EPA-HQ-OPP-2013-0779 | Mesotrione: EFED Response to Public Comments on the Draft Ecological Risk Assessment for Registration Review | Supporting & Related Material | Comment Response | 2021-08-03T04:00:00Z | 2021 | 8 | 2021-08-04T00:48:24Z | 0 | 0 | 0900006484bdca5e | |||
| EPA-HQ-OPP-2013-0779-0046 | EPA | None EPA-HQ-OPP-2013-0779 | Meeting Notes from Mesotrione Registration Review Meeting with Registrants – May 10th and May 12th, 2021 | Supporting & Related Material | Meeting Materials | 2021-07-22T04:00:00Z | 2021 | 7 | 2021-07-23T00:33:38Z | 0 | 0 | 0900006484bfa990 |
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;