documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OPPT-2013-0677" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_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-2013-0677-0034 | EPA | None EPA-HQ-OPPT-2013-0677 | Receipt of Information under Toxic Substances Control Act | Notice | 2016-12-29T05:00:00Z | 2016 | 12 | 2020-07-08T17:26:34Z | 2016-31445 | 0 | 0 | 090000648243d1b7 | |||
| EPA-HQ-OPPT-2013-0677-0033 | EPA | None EPA-HQ-OPPT-2013-0677 | Receipt of Information under Toxic Substances Control Act | Notice | 2016-12-13T05:00:00Z | 2016 | 12 | 2020-07-08T17:25:31Z | 2016-29889 | 0 | 0 | 09000064823fe6ea | |||
| EPA-HQ-OPPT-2013-0677-0032 | EPA | None EPA-HQ-OPPT-2013-0677 | Receipt of Information under the Toxic Substances Control Act | Notice | 2016-12-06T05:00:00Z | 2016 | 12 | 2020-07-08T17:24:54Z | 2016-29254 | 0 | 0 | 09000064823e33c7 | |||
| EPA-HQ-OPPT-2013-0677-0031 | EPA | None EPA-HQ-OPPT-2013-0677 | Receipt of Information: Toxic Substances Control Act | Notice | 2016-11-10T05:00:00Z | 2016 | 11 | 2016-11-10T05:00:00Z | 2020-07-08T17:24:12Z | 2016-27190 | 0 | 0 | 0900006482387376 | ||
| EPA-HQ-OPPT-2013-0677-0030 | EPA | None EPA-HQ-OPPT-2013-0677 | Receipt of Information under the Toxic Substances Control Act | Notice | 2016-10-18T04:00:00Z | 2016 | 10 | 2020-07-08T17:23:25Z | 2016-25160 | 0 | 0 | 090000648230f5a3 | |||
| EPA-HQ-OPPT-2013-0677-0029 | EPA | None EPA-HQ-OPPT-2013-0677 | Receipt of Information under the Toxic Substances Control Act | Notice | 2016-10-05T04:00:00Z | 2016 | 10 | 2020-07-08T17:22:35Z | 2016-24112 | 0 | 0 | 090000648229a0e5 | |||
| EPA-HQ-OPPT-2013-0677-0028 | EPA | None EPA-HQ-OPPT-2013-0677 | Receipt of Information under the Toxic Substances Control Act | Notice | 2016-09-26T04:00:00Z | 2016 | 9 | 2016-09-26T04:00:00Z | 2020-07-08T17:21:58Z | 2016-23172 | 0 | 0 | 0900006482267622 | ||
| EPA-HQ-OPPT-2013-0677-0027 | EPA | None EPA-HQ-OPPT-2013-0677 | Receipt of Test Data under the Toxic Substances Control Act | Notice | Notice of Data Availability | 2016-03-17T04:00:00Z | 2016 | 3 | 2020-07-08T17:21:06Z | 2016-06053 | 0 | 0 | 0900006481ecadf0 | ||
| EPA-HQ-OPPT-2013-0677-0026 | EPA | None EPA-HQ-OPPT-2013-0677 | Test Data under the Toxic Substances Control Act | Notice | Notice of Data Availability | 2016-02-08T05:00:00Z | 2016 | 2 | 2020-07-08T17:19:57Z | 2016-02412 | 0 | 0 | 0900006481e59f34 | ||
| EPA-HQ-OPPT-2013-0677-0025 | EPA | None EPA-HQ-OPPT-2013-0677 | Receipt of Test Data Under the Toxic Substances Control Act | Notice | 2016-01-22T05:00:00Z | 2016 | 1 | 2020-07-08T17:18:55Z | 2016-01292 | 0 | 0 | 0900006481e28796 |
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;