documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OPPT-2012-0725" and posted_year = 2015 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-OPPT-2012-0725-0071 | EPA | None EPA-HQ-OPPT-2012-0725 | Work Plan Risk Assessment for N-Methyl pyrrolidone (NMP) March 23, 2015 Final [740-R1-5002] | Supporting & Related Material | Publication - USEPA | 2015-03-27T04:00:00Z | 2015 | 3 | 2020-08-25T18:42:00Z | 0 | 0 | 0900006481a5a962 | |||
| EPA-HQ-OPPT-2012-0725-0073 | EPA | None EPA-HQ-OPPT-2012-0725 | NMP Consumer PBPK Results and Risk Estimates FINAL | Supporting & Related Material | Report | 2015-03-27T04:00:00Z | 2015 | 3 | 2020-08-25T18:43:13Z | 0 | 0 | 0900006481a5ee78 | |||
| EPA-HQ-OPPT-2012-0725-0070 | EPA | None EPA-HQ-OPPT-2012-0725 | NMP Memo Final-Response to Armstrong Comments February 18, 2014 | Supporting & Related Material | Comment Response | 2015-03-27T04:00:00Z | 2015 | 3 | 2020-08-25T18:41:19Z | 0 | 0 | 0900006481a5a4c3 | |||
| EPA-HQ-OPPT-2012-0725-0072 | EPA | None EPA-HQ-OPPT-2012-0725 | n-Methylpyrrolidone (NMP) Responses to Comments March 23, 2015 Final | Supporting & Related Material | Comment Response | 2015-03-27T04:00:00Z | 2015 | 3 | 2020-08-25T18:42:38Z | 0 | 0 | 0900006481a5a963 | |||
| EPA-HQ-OPPT-2012-0725-0076 | EPA | None EPA-HQ-OPPT-2012-0725 | NMP Pregnant Rat PBPK Model | Supporting & Related Material | Report | 2015-03-27T04:00:00Z | 2015 | 3 | 2020-08-25T18:45:19Z | 0 | 0 | 0900006481a5ee7b | |||
| EPA-HQ-OPPT-2012-0725-0075 | EPA | None EPA-HQ-OPPT-2012-0725 | NMP Pregnant Human PBPK Model | Supporting & Related Material | Report | 2015-03-27T04:00:00Z | 2015 | 3 | 2020-08-25T18:44:35Z | 0 | 0 | 0900006481a5ee7a | |||
| EPA-HQ-OPPT-2012-0725-0074 | EPA | None EPA-HQ-OPPT-2012-0725 | NMP Worker PBPK Results and Risk Estimates FINAL | Supporting & Related Material | Fact/Data Sheet | 2015-03-27T04:00:00Z | 2015 | 3 | 2020-08-25T18:43:51Z | 0 | 0 | 0900006481a5ee79 |
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;