documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPPT-2009-0112" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-OPPT-2009-0112-0328 | EPA | None EPA-HQ-OPPT-2009-0112 | Sec 4-17-0007 5026-74-4 Oral Gavage Pre-Natal Development in Rat | Supporting & Related Material | Publication - Copyrighted Materials | 2016-12-19T05:00:00Z | 2016 | 12 | 2016-12-19T20:40:54Z | 0 | 0 | 0900006482409d3e | |||
| EPA-HQ-OPPT-2009-0112-0327 | EPA | None EPA-HQ-OPPT-2009-0112 | 70693-50-4 HPV3 EPA Review and BASF Response for MP and BP 10-25 and November 2, 2016 | Supporting & Related Material | 2016-11-09T05:00:00Z | 2016 | 11 | 2016-11-09T17:58:32Z | 0 | 0 | 09000064823790c0 | ||||
| EPA-HQ-OPPT-2009-0112-0326 | EPA | None EPA-HQ-OPPT-2009-0112 | 5026-74-4 Prelim Oral Gavage Pre-Natal Dev in Rat | Supporting & Related Material | Study | 2016-07-20T04:00:00Z | 2016 | 7 | 2016-07-20T20:24:41Z | 0 | 0 | 09000064820b1c04 | |||
| EPA-HQ-OPPT-2009-0112-0324 | EPA | None EPA-HQ-OPPT-2009-0112 | 52556-42-0 HPV3 Data Adequacy Review Gene Mutation Chromosomal Aberrations September 10, 2015 Final | Supporting & Related Material | Report | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T15:32:42Z | 0 | 0 | 0900006481e51650 | |||
| EPA-HQ-OPPT-2009-0112-0322 | EPA | None EPA-HQ-OPPT-2009-0112 | 98-56-6 HPV3 Data Adequacy Review New Algae Dated June 30, 2015 Final | Supporting & Related Material | Report | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T15:32:42Z | 0 | 0 | 0900006481e5164b | |||
| EPA-HQ-OPPT-2009-0112-0323 | EPA | None EPA-HQ-OPPT-2009-0112 | 68610-90-2 HPV3 Email Regarding Data Adequacy Review for Acute Mammalian-Gene Mutation-Chromosomal Aberrations Endpoints Dated July 28, 2015 | Supporting & Related Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T15:32:42Z | 0 | 0 | 0900006481e5164e | ||||
| EPA-HQ-OPPT-2009-0112-0321 | EPA | None EPA-HQ-OPPT-2009-0112 | 68610-90-2 HPV3 EPA Review of Physical-Chemical Properties September 19 2013 | Supporting & Related Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T15:32:41Z | 0 | 0 | 0900006481e5164a | ||||
| EPA-HQ-OPPT-2009-0112-0325 | EPA | None EPA-HQ-OPPT-2009-0112 | 68610-90-2 HPV3 EPA Review of Ready Biodegradation Study October 1, 2015 | Supporting & Related Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T15:32:42Z | 0 | 0 | 0900006481e51651 | ||||
| EPA-HQ-OPPT-2009-0112-0320 | EPA | None EPA-HQ-OPPT-2009-0112 | 25321-41-9 HPV3 EPA Review of Physical-Chemical Properties February 7, 2013 | Supporting & Related Material | 2016-02-17T05:00:00Z | 2016 | 2 | 2016-02-17T15:15:17Z | 0 | 0 | 0900006481e51649 | ||||
| EPA-HQ-OPPT-2009-0112-0319 | EPA | None EPA-HQ-OPPT-2009-0112 | 52556-42-0 HPV3 EPA Review Physical-Chemical Endpoints Testing November 13, 2012 | Supporting & Related Material | 2016-02-17T05:00:00Z | 2016 | 2 | 2016-02-17T15:15:16Z | 0 | 0 | 0900006481e510af |
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;