documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OPPT-2016-0675" 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)
document_type 2
agency_id 1
- EPA 6
| 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-2016-0675-0022 | EPA | None EPA-HQ-OPPT-2016-0675 | Toxic Substances Control Act Reporting and Recordkeeping Requirements: Standards for Small Manufacturers and Processors; Final Determination | Notice | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-11-30T15:28:23Z | 2017-25822 | 0 | 0 | 0900006482cc0903 | |||
| EPA-HQ-OPPT-2016-0675-0017 | EPA | None EPA-HQ-OPPT-2016-0675 | Small Business Administration Response to EPA December 7, 2016 Consultation on Size Standards for TSCA 8(a) | Supporting & Related Material | Letter | 2017-05-09T04:00:00Z | 2017 | 5 | 2017-05-28T05:12:43Z | 0 | 0 | 090000648254f005 | |||
| EPA-HQ-OPPT-2016-0675-0016 | EPA | None EPA-HQ-OPPT-2016-0675 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: TSCA Reporting and Recordkeeping Requirements; Standards for Small Manufacturers and Processors; Reopening of Comment Period | Notice | 2017-05-09T04:00:00Z | 2017 | 5 | 2017-05-09T04:00:00Z | 2017-05-25T03:59:59Z | 2017-05-25T01:01:26Z | 2017-09380 | 0 | 0 | 090000648259bb76 | |
| EPA-HQ-OPPT-2016-0675-0001 | EPA | None EPA-HQ-OPPT-2016-0675 | TSCA Reporting and Recordkeeping Requirements: Standards for Small Manufacturers and Processors | Notice | Request for Comments | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T05:00:00Z | 2017-01-18T04:59:59Z | 2017-01-18T02:01:37Z | 2016-30176 | 0 | 0 | 090000648240b622 |
| EPA-HQ-OPPT-2016-0675-0002 | EPA | None EPA-HQ-OPPT-2016-0675 | TSCA 8a Small Business Determination SBA Consultation Letter December 7, 2016 | Supporting & Related Material | Letter | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-18T01:55:34Z | 0 | 0 | 09000064823eea7f | |||
| EPA-HQ-OPPT-2016-0675-0003 | EPA | None EPA-HQ-OPPT-2016-0675 | BLS 2016 PPI Series Report-WPU06 November 14, 2016 | Supporting & Related Material | Data | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-18T01:55:39Z | 0 | 0 | 09000064823e2fad |
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;