documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPP-2008-0883" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, 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-2008-0883-0057 | EPA | None EPA-HQ-OPP-2008-0883 | EPA Meeting with the National Toxicology Program (NTP) and Relevant Pesticide Chemical Technical Registrants to Discuss the Upcoming NTP Testing of Various Organophosphate (OP) and Oxon Compounds | Supporting & Related Material | Meeting Materials | 2020-12-16T05:00:00Z | 2020 | 12 | 2020-12-16T17:33:05Z | 0 | 0 | 090000648497a393 | |||
| EPA-HQ-OPP-2008-0883-0051 | EPA | None EPA-HQ-OPP-2008-0883 | Meeting Minutes: Office of Pesticide Programs Meeting with AMVAC to Discuss Tribufos Mitigation. November 22, 2016 | Supporting & Related Material | Meeting Materials | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T16:33:47Z | 0 | 0 | 090000648245d1af | |||
| EPA-HQ-OPP-2008-0883-0053 | EPA | None EPA-HQ-OPP-2008-0883 | Meeting Minutes: Office of Pesticide Programs Meeting with USDA OPMP to Discuss Tribufos, Dichrotophos, and Tebufenozide November 1, 2016 | Supporting & Related Material | Meeting Materials | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T16:33:49Z | 0 | 0 | 090000648245d1b6 | |||
| EPA-HQ-OPP-2008-0883-0052 | EPA | None EPA-HQ-OPP-2008-0883 | Meeting Minutes: Office of Pesticide Programs Meeting with the National Cotton Council to Discuss Tribufos Human Health and Ecological Risk Assessments December 15, 2016 | Supporting & Related Material | Meeting Materials | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T16:33:48Z | 0 | 0 | 090000648245d1b2 | |||
| EPA-HQ-OPP-2008-0883-0056 | EPA | None EPA-HQ-OPP-2008-0883 | Tribufos: Adjustment of Dermal Point of Departure using Dermal Absorption Studies May 29, 2019 | Supporting & Related Material | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T16:33:51Z | 0 | 0 | 090000648438eee4 | ||||
| EPA-HQ-OPP-2008-0883-0055 | EPA | None EPA-HQ-OPP-2008-0883 | Tribufos: Review of In Vitro Dermal Absorption study in humans, rats, and rabbits May 29, 2019 | Supporting & Related Material | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T16:33:50Z | 0 | 0 | 090000648438e39d | ||||
| EPA-HQ-OPP-2008-0883-0054 | EPA | None EPA-HQ-OPP-2008-0883 | Meeting Minutes: Office of Pesticide Programs Meeting with AMVAC to Discuss Potential Mitigation for Tribufos October 25, 2016 | Supporting & Related Material | Meeting Materials | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T16:33:49Z | 0 | 0 | 090000648245d051 |
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;