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-2011-0039" and posted_year = 2018 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-2011-0039-0118 | EPA | None EPA-HQ-OPP-2011-0039 | Final Report External Peer Review of EPA's Physiologically-based Pharmacokinetic (PBPK) Model for Deltamethrin and Permethrin and PBPK-Pharmacodynamic (PBPK-PD) Model for Carbaryl | Supporting & Related Material | Report | 2018-11-14T05:00:00Z | 2018 | 11 | 2018-11-14T17:37:39Z | 0 | 0 | 09000064838d28db | |||
| EPA-HQ-OPP-2011-0039-0117 | EPA | None EPA-HQ-OPP-2011-0039 | EPA Comments for October 12 PBPK Meeting | Supporting & Related Material | Meeting Materials | 2018-10-12T04:00:00Z | 2018 | 10 | 2018-10-12T20:50:10Z | 0 | 0 | 09000064837ce568 | |||
| EPA-HQ-OPP-2011-0039-0116 | EPA | None EPA-HQ-OPP-2011-0039 | PBPK Draft Agenda and Presentation Materials Open for Public Comment | Other | 2018-10-12T04:00:00Z | 2018 | 10 | 2018-10-12T04:00:00Z | 2018-11-11T04:59:59Z | 2018-11-08T02:03:17Z | 0 | 0 | 09000064837caaa9 | ||
| EPA-HQ-OPP-2011-0039-0115 | EPA | None EPA-HQ-OPP-2011-0039 | PBPK Agenda and Findings PowerPoint for October 12, 2018 Meeting | Supporting & Related Material | Meeting Materials | 2018-10-10T04:00:00Z | 2018 | 10 | 2018-10-10T16:17:04Z | 0 | 0 | 0900006483793497 | |||
| EPA-HQ-OPP-2011-0039-0114 | EPA | None EPA-HQ-OPP-2011-0039 | EPA's Office of Pesticide Programs' Review of PBPK Models for Carbaryl, cis-Permethrin, Deltamethrin | Supporting & Related Material | 2018-09-11T04:00:00Z | 2018 | 9 | 2018-09-11T17:21:59Z | 0 | 0 | 090000648366ca70 | ||||
| EPA-HQ-OPP-2011-0039-0112 | EPA | None EPA-HQ-OPP-2011-0039 | CAPHRA Program Overview: Evaluation of Age-Dependent Sensitivity to Pyrethroid Insecticides | Supporting & Related Material | Report | 2018-09-11T04:00:00Z | 2018 | 9 | 2018-09-18T15:46:46Z | 0 | 0 | 090000648366ca6f | |||
| EPA-HQ-OPP-2011-0039-0113 | EPA | None EPA-HQ-OPP-2011-0039 | White Paper Application of PBPK Models to Pyrethroid Risk Assessment - Demonstration with Deltamethrin and Permethrin | Supporting & Related Material | Risk Assessment | 2018-09-11T04:00:00Z | 2018 | 9 | 2018-09-11T17:18:53Z | 0 | 0 | 090000648366ca6c |
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;