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-2015-0303" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, withdrawn, 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-2015-0303-0022 | EPA | None EPA-HQ-OPP-2015-0303 | Registration Review: Draft Human Health and/or Ecological Risk Assessments for Several Pesticides; Availability | Notice | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-11-30T05:00:00Z | 2019-03-16T03:59:59Z | 2019-03-15T01:08:03Z | 2018-26086 | 0 | 0 | 090000648391d0f7 | |
| EPA-HQ-OPP-2015-0303-0028 | EPA | None EPA-HQ-OPP-2015-0303 | Penoxsulam Tier I Review of Human Incidents | Supporting & Related Material | Risk Assessment | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-12-04T19:53:18Z | 0 | 0 | 090000648378dba9 | |||
| EPA-HQ-OPP-2015-0303-0024 | EPA | None EPA-HQ-OPP-2015-0303 | Penoxsulam Chronic Aggregate Dietary (Food and Drinking Water) Exposure and Risk Assessment | Supporting & Related Material | Risk Assessment | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-12-04T19:51:40Z | 0 | 0 | 090000648378dba5 | |||
| EPA-HQ-OPP-2015-0303-0029 | EPA | None EPA-HQ-OPP-2015-0303 | Penoxsulam Human Health New Use Risk Assessment to Support the Registration of Proposed Use | Supporting & Related Material | Risk Assessment | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-12-04T19:53:42Z | 0 | 0 | 090000648378e75d | |||
| EPA-HQ-OPP-2015-0303-0027 | EPA | None EPA-HQ-OPP-2015-0303 | Summary of Hazard and Science Policy Council (HASPOC) Meeting of February 19, 2015: Recommendation on the need for subchronic inhalation study in the rat | Supporting & Related Material | Memorandum | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-12-04T19:52:49Z | 0 | 0 | 090000648378dba8 | |||
| EPA-HQ-OPP-2015-0303-0025 | EPA | None EPA-HQ-OPP-2015-0303 | Penoxsulam Drinking Water Exposure Concentrations for the Proposed New Uses | Supporting & Related Material | Risk Assessment | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-12-04T19:54:05Z | 0 | 0 | 090000648378dba6 | |||
| EPA-HQ-OPP-2015-0303-0030 | EPA | None EPA-HQ-OPP-2015-0303 | Penoxsulam. Draft Human Health Risk Assessment for Registration Review | Supporting & Related Material | Risk Assessment | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-12-04T19:55:00Z | 0 | 0 | 09000064837ece42 | |||
| EPA-HQ-OPP-2015-0303-0026 | EPA | None EPA-HQ-OPP-2015-0303 | Penoxsulam Occupational and Residential Exposure Assessment for a Proposed Use | Supporting & Related Material | Risk Assessment | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-12-04T19:52:26Z | 0 | 0 | 090000648378dba7 | |||
| EPA-HQ-OPP-2015-0303-0023 | EPA | None EPA-HQ-OPP-2015-0303 | Registration Review: Draft Human Health and/or Ecological Risk Assessments for Several Pesticides; Availability | Notice | 2018-11-30T00:00:00Z | 2018 | 11 | 2019-01-29T20:38:00Z | 0 | 1 | 090000648391d0fb |
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;