documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-ORD-2015-0588" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-ORD-2015-0588-0030 | EPA | None EPA-HQ-ORD-2015-0588 | EPA Science and Ethics reviews for MARK-8 Final Dec 15 2015 | Supporting & Related Material | Memorandum | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T15:05:44Z | 0 | 0 | 0900006481df4cfb | |||
| EPA-HQ-ORD-2015-0588-0031 | EPA | None EPA-HQ-ORD-2015-0588 | January 12-13 2016 HSRB Meeting - Final Agenda | Supporting & Related Material | Meeting Materials | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T15:05:49Z | 0 | 0 | 0900006481e027c6 | |||
| EPA-HQ-ORD-2015-0588-0026 | EPA | None EPA-HQ-ORD-2015-0588 | Article entitled “Assessing intermittent pesticide exposure from flea control collars containing the organophosphorus insecticide tetrachlorvinphos” by M. Keith Davis, J. Scott Boone, John E. Moran, John W. Tyler, and Janice E. Chambers, from the Journal of Exposure Science and Environmental Epidemiology (2008) 18, 564-570 | Supporting & Related Material | Publication - Copyrighted Materials | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T15:05:18Z | 0 | 0 | 0900006481df3cb0 | |||
| EPA-HQ-ORD-2015-0588-0028 | EPA | None EPA-HQ-ORD-2015-0588 | EPA Science and Ethics review for Mark-4 Study Final 12 15 15 | Supporting & Related Material | Memorandum | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T15:05:27Z | 0 | 0 | 0900006481df4cf5 | |||
| EPA-HQ-ORD-2015-0588-0027 | EPA | None EPA-HQ-ORD-2015-0588 | Science and Ethics Reviews of “Field Testing of S.C. Johnson Personal Mosquito Repellent Products to Support their Use of the EPA Repellency Awareness Graphic” for MARK-2 OFF! Deep Woods Sportsmen Insect Repellent I | Supporting & Related Material | Memorandum | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T15:04:55Z | 0 | 0 | 0900006481df4a0c | |||
| EPA-HQ-ORD-2015-0588-0025 | EPA | None EPA-HQ-ORD-2015-0588 | EPA Science review of TCVP Davis et al 2008 Research D430707 EPA Ethics Review of Davis et al Research on Flea Collars with TCVP | Supporting & Related Material | Memorandum | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T15:05:13Z | 0 | 0 | 0900006481df3cae | |||
| EPA-HQ-ORD-2015-0588-0024 | EPA | None EPA-HQ-ORD-2015-0588 | Transmittal and charge to HSRB for January 2016 meeting Draft Agenda | Supporting & Related Material | Memorandum | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T15:05:04Z | 0 | 0 | 0900006481df3cac | |||
| EPA-HQ-ORD-2015-0588-0029 | EPA | None EPA-HQ-ORD-2015-0588 | EPA Science and Ethics reviews for Mark-5 Study Final Dec 15 2015 | Supporting & Related Material | Memorandum | 2016-01-13T05:00:00Z | 2016 | 1 | 2016-01-13T15:05:35Z | 0 | 0 | 0900006481df4cf9 |
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;