documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OPPT-2015-0436" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-OPPT-2015-0436-0007 | EPA | None EPA-HQ-OPPT-2015-0436 | Revised Information Collection Request (ICR): TSCA Section 4 Test Rules, Consent Orders, Enforceable Consent Agreements, Voluntary Testing Agreements, Voluntary Data Submissions, and Exemptions from Testing Requirements | Supporting & Related Material | ICR Supporting Statement | 2016-06-30T04:00:00Z | 2016 | 6 | 2016-07-01T00:52:04Z | 0 | 0 | 090000648203a26c | |||
| EPA-HQ-OPPT-2015-0436-0009 | EPA | None EPA-HQ-OPPT-2015-0436 | EPA’s Response to the Public Comment | Supporting & Related Material | Memorandum | 2016-06-30T04:00:00Z | 2016 | 6 | 2016-07-01T00:51:55Z | 0 | 0 | 090000648203a26e | |||
| EPA-HQ-OPPT-2015-0436-0008 | EPA | None EPA-HQ-OPPT-2015-0436 | Public Comment Received from the American Chemistry Council (ACC) | Supporting & Related Material | Letter | 2016-06-30T04:00:00Z | 2016 | 6 | 2016-07-01T00:51:50Z | 0 | 0 | 090000648203a26d | |||
| EPA-HQ-OPPT-2015-0436-0010 | EPA | None EPA-HQ-OPPT-2015-0436 | Consultations Message Sent by EPA to Potential Respondents | Supporting & Related Material | 2016-06-30T04:00:00Z | 2016 | 6 | 2016-07-01T00:51:59Z | 0 | 0 | 090000648203a26f | ||||
| EPA-HQ-OPPT-2015-0436-0004 | EPA | None EPA-HQ-OPPT-2015-0436 | Toxic Substances Control Act Section 4 - 15 USC 2603 | Supporting & Related Material | ICR Supporting Statement | 2016-03-15T04:00:00Z | 2016 | 3 | 2016-03-16T00:34:27Z | 0 | 0 | 0900006481e87676 | |||
| EPA-HQ-OPPT-2015-0436-0003 | EPA | None EPA-HQ-OPPT-2015-0436 | Procedures Governing Testing Consent Agreements and Test Rules, 40 CFR 790 | Supporting & Related Material | ICR Supporting Statement | 2016-03-15T04:00:00Z | 2016 | 3 | 2016-03-16T00:34:22Z | 0 | 0 | 0900006481e87677 | |||
| EPA-HQ-OPPT-2015-0436-0002 | EPA | None EPA-HQ-OPPT-2015-0436 | Economic Analysis Tables | Supporting & Related Material | ICR Supporting Statement | 2016-03-15T04:00:00Z | 2016 | 3 | 2016-03-16T00:34:36Z | 0 | 0 | 0900006481e873b2 | |||
| EPA-HQ-OPPT-2015-0436-0005 | EPA | None EPA-HQ-OPPT-2015-0436 | Information Collection Request (ICR): TSCA Section 4 Test Rules, Consent Orders, Enforcement Consent Agreements, Voluntary Testing Agreements, Voluntary Data Submissions, and Exemptions from Testing Requirements | Supporting & Related Material | ICR Supporting Statement | 2016-03-15T04:00:00Z | 2016 | 3 | 2016-03-16T00:34:32Z | 0 | 0 | 0900006481e87671 | |||
| EPA-HQ-OPPT-2015-0436-0001 | EPA | None EPA-HQ-OPPT-2015-0436 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Information Collection Request (ICR) | 2016-03-15T04:00:00Z | 2016 | 3 | 2016-03-15T04:00:00Z | 2016-05-17T03:59:59Z | 2016-05-16T21:00:43Z | 2016-05821 | 0 | 0 | 0900006481ec3a7d |
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;