documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "EPA-HQ-OW-2017-0260" 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 9
| 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-OW-2017-0260-0076 | EPA | None EPA-HQ-OW-2017-0260 | Aquatic Life Ambient Water Quality Criteria for Aluminum in Freshwater | Notice | Notice of Data Availability | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-21T05:00:00Z | 2018-12-21T16:33:09Z | 2018-27745 | 0 | 0 | 09000064839be39a | |
| EPA-HQ-OW-2017-0260-0077 | EPA | None EPA-HQ-OW-2017-0260 | Final National Recommended AWQC for Aluminum | Supporting & Related Material | Publication - USEPA | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-22T03:34:33Z | 0 | 0 | 090000648399d4d3 | |||
| EPA-HQ-OW-2017-0260-0078 | EPA | None EPA-HQ-OW-2017-0260 | Aluminum Criteria Calculator V.2.0 | Supporting & Related Material | Data | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-22T03:34:54Z | 0 | 0 | 090000648399d4d4 | |||
| EPA-HQ-OW-2017-0260-0016 | EPA | None EPA-HQ-OW-2017-0260 | Draft Updated Aquatic Life Ambient Water Quality Criteria for Aluminum in Freshwater; Extension of Public Comment Period | Notice | Extension of Comment Period | 2017-09-26T04:00:00Z | 2017 | 9 | 2017-09-26T15:19:27Z | 2017-20597 | 0 | 0 | 0900006482b7b974 | ||
| EPA-HQ-OW-2017-0260-0001 | EPA | None EPA-HQ-OW-2017-0260 | Request for Scientific Views: Draft Updated Aquatic Life Ambient Water Quality Criteria for Aluminum in Freshwater | Notice | Notice of Data Availability | 2017-07-28T04:00:00Z | 2017 | 7 | 2017-07-28T04:00:00Z | 2017-10-27T03:59:59Z | 2017-10-27T13:02:41Z | 2017-15968 | 0 | 0 | 090000648297d842 |
| EPA-HQ-OW-2017-0260-0005 | EPA | None EPA-HQ-OW-2017-0260 | EPA Response to External Peer Review Draft AWQC for Aluminum | Supporting & Related Material | Comment Response | 2017-07-28T04:00:00Z | 2017 | 7 | 2017-08-06T05:07:05Z | 0 | 0 | 090000648297758a | |||
| EPA-HQ-OW-2017-0260-0004 | EPA | None EPA-HQ-OW-2017-0260 | EPA Response to External Peer Review Aluminum Approaches | Supporting & Related Material | Comment Response | 2017-07-28T04:00:00Z | 2017 | 7 | 2017-08-06T05:06:59Z | 0 | 0 | 0900006482977589 | |||
| EPA-HQ-OW-2017-0260-0002 | EPA | None EPA-HQ-OW-2017-0260 | Draft National Recommended Ambient Water Quality Criteria for Aluminum | Supporting & Related Material | Publication - USEPA | 2017-07-28T04:00:00Z | 2017 | 7 | 2017-08-06T05:07:17Z | 0 | 0 | 09000064829420f7 | |||
| EPA-HQ-OW-2017-0260-0003 | EPA | None EPA-HQ-OW-2017-0260 | Aluminum Criteria Calculator V.1.0.Macro | Supporting & Related Material | Data | 2017-07-28T04:00:00Z | 2017 | 7 | 2017-08-06T05:07:11Z | 0 | 0 | 0900006482942160 |
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;