documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-ORD-2012-0459" 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-2012-0459-0026 | EPA | None EPA-HQ-ORD-2012-0459 | Interagency Science Discussion Draft comment from OMB (OMB Email Comments TMB Final IASDD) | Supporting & Related Material | Technical Support Document | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:55:43Z | 0 | 0 | 0900006482295b5d | |||
| EPA-HQ-ORD-2012-0459-0021 | EPA | None EPA-HQ-ORD-2012-0459 | Toxicological Review of TMBs Final (1037tr) [EPA/635/R-16/161Fa] | Supporting & Related Material | Publication - USEPA | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:56:08Z | 0 | 0 | 0900006482294ffd | |||
| EPA-HQ-ORD-2012-0459-0022 | EPA | None EPA-HQ-ORD-2012-0459 | Final Tox Review Trimethylbenzenes (TMBs) Supplemental Information Final 2016) [EPA/635/R-16/161Fb] | Supporting & Related Material | Publication - USEPA | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:56:13Z | 0 | 0 | 0900006482294ffe | |||
| EPA-HQ-ORD-2012-0459-0025 | EPA | None EPA-HQ-ORD-2012-0459 | Interagency Science Discussion Draft of TMBS comments from OMB (OMB Comments TMB Final IASDD) | Supporting & Related Material | Office of Management and Budget (OMB) | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:55:48Z | 0 | 0 | 0900006482295b5c | |||
| EPA-HQ-ORD-2012-0459-0027 | EPA | None EPA-HQ-ORD-2012-0459 | Interagency Science Discussion Draft Comments from SBA (SBA Comments TMB Final IASDD) | Supporting & Related Material | Comment Response | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:55:58Z | 0 | 0 | 0900006482295b5e | |||
| EPA-HQ-ORD-2012-0459-0020 | EPA | None EPA-HQ-ORD-2012-0459 | IRIS Summary for Trimethylbenzenes (TMBs) (1037 Summary) [EPA/635/R-16/161Fc] | Supporting & Related Material | Publication - USEPA | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:56:03Z | 0 | 0 | 0900006482294ffc | |||
| EPA-HQ-ORD-2012-0459-0023 | EPA | None EPA-HQ-ORD-2012-0459 | Interagency Science Discussion Draft comments from Department of Defense (DoD) on Toxicological Review of Trimethylbenzenes Final Draft (Step 6b) | Supporting & Related Material | Fact/Data Sheet | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:56:18Z | 0 | 0 | 0900006482294fff | |||
| EPA-HQ-ORD-2012-0459-0028 | EPA | None EPA-HQ-ORD-2012-0459 | TMB Interagency Science Discussion Draft Supplemental Information (TMB IASD Supplemental Information June 1, 2016) [EPA/635/R-16/001b] | Supporting & Related Material | Publication - USEPA | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:55:53Z | 0 | 0 | 0900006482295b5f | |||
| EPA-HQ-ORD-2012-0459-0029 | EPA | None EPA-HQ-ORD-2012-0459 | Interagency Science Discussion Draft Toxicological Review of TMBs (TMB IASD Toxicological Review June 1, 2016) [EPA/635/R-16/001a] | Supporting & Related Material | Publication - USEPA | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:55:39Z | 0 | 0 | 0900006482295b60 | |||
| EPA-HQ-ORD-2012-0459-0024 | EPA | None EPA-HQ-ORD-2012-0459 | (EPAS TMBS Response to Comments) | Supporting & Related Material | Comment Response | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-16T00:56:23Z | 0 | 0 | 0900006482295000 |
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;