documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPP-2010-0889" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2010-0889-0746 | EPA | None EPA-HQ-OPP-2010-0889 | State-level Estimated Percent Crop Treated for Foliar Use of Sulfoxaflor (PC 005210) on Alfalfa and Rice | Supporting & Related Material | Memorandum | 2024-12-20T05:00:00Z | 2024 | 12 | 2024-12-20T17:49:28Z | 0 | 0 | 0900006486877e83 | |||
| EPA-HQ-OPP-2010-0889-0747 | EPA | None EPA-HQ-OPP-2010-0889 | State-level Estimated Percent Crop Treated for Foliar Use of Sulfoxaflor (PC# 005210) on Cotton and Soybean | Supporting & Related Material | Memorandum | 2024-12-20T05:00:00Z | 2024 | 12 | 2024-12-20T17:49:48Z | 0 | 0 | 0900006486877e84 | |||
| EPA-HQ-OPP-2010-0889-0744 | EPA | None EPA-HQ-OPP-2010-0889 | PRIA Label Amendment – Amended Terms and Conditions, and Revised Labeling | Supporting & Related Material | 2024-10-08T04:00:00Z | 2024 | 10 | 2024-10-08T13:41:15Z | 0 | 0 | 09000064867b749f | ||||
| EPA-HQ-OPP-2010-0889-0743 | EPA | None EPA-HQ-OPP-2010-0889 | Sulfoxaflor: Impacts of Proposed Label Amendments for California-Specific Products on EPA’s Findings in the 2023 Final Biological Evaluation | Supporting & Related Material | Evaluation | 2024-10-08T04:00:00Z | 2024 | 10 | 2024-10-08T13:41:09Z | 0 | 0 | 09000064867a915f | |||
| EPA-HQ-OPP-2010-0889-0745 | EPA | None EPA-HQ-OPP-2010-0889 | PRIA Label Amendment – Amended Terms and Conditions, and Revised Labeling | Supporting & Related Material | 2024-10-08T04:00:00Z | 2024 | 10 | 2024-10-08T13:41:20Z | 0 | 0 | 09000064867b74fe | ||||
| EPA-HQ-OPP-2010-0889-0742 | EPA | None EPA-HQ-OPP-2010-0889 | Endangered Species Act Section 7(d) Consistency Determination with Respect to Amendments to California-only Sulfoxaflor Products | Supporting & Related Material | Memorandum | 2024-10-08T04:00:00Z | 2024 | 10 | 2024-10-08T13:41:03Z | 0 | 0 | 09000064867a3aa3 | |||
| EPA-HQ-OPP-2010-0889-0741 | EPA | None EPA-HQ-OPP-2010-0889 | Appendix B Beekeeper Costs with Use of Sulfoxaflor Pursuant to the 2019 Registration Amendments | Supporting & Related Material | 2024-06-10T04:00:00Z | 2024 | 6 | 2024-06-10T18:29:48Z | 0 | 0 | 09000064865a79e4 | ||||
| EPA-HQ-OPP-2010-0889-0739 | EPA | None EPA-HQ-OPP-2010-0889 | Posting of EPA-HQ-OPP-2010-0889 supporting documents to Regulations.gov for Public Access | Supporting & Related Material | 2024-06-10T04:00:00Z | 2024 | 6 | 2024-06-10T18:29:03Z | 0 | 0 | 09000064865a7410 | ||||
| EPA-HQ-OPP-2010-0889-0740 | EPA | None EPA-HQ-OPP-2010-0889 | Appendix A FIFRA Section 3(c)(4) Statement Responses To Comments | Supporting & Related Material | Comment Response | 2024-06-10T04:00:00Z | 2024 | 6 | 2024-06-10T18:29:18Z | 0 | 0 | 09000064865a79e3 |
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;