documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "EPA-HQ-OW-2015-0335" 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-OW-2015-0335-0153 | EPA | None EPA-HQ-OW-2015-0335 | Technical Support Documents: Final EPA-USGS Technical Report-Protecting Aquatic Life from Effects of Hydrologic Alteration | Notice | Notice of Data Availability | 2016-12-21T05:00:00Z | 2016 | 12 | 2016-12-21T16:00:12Z | 2016-30760 | 0 | 0 | 090000648242d17d | ||
| EPA-HQ-OW-2015-0335-0156 | EPA | None EPA-HQ-OW-2015-0335 | Final EPA-USGS Technical Report Protecting Aquatic Life from Effects of Hydrologic Alteration | Supporting & Related Material | Publication - USEPA | 2016-12-21T05:00:00Z | 2016 | 12 | 2016-12-22T01:45:26Z | 0 | 0 | 09000064823ea9b3 | |||
| EPA-HQ-OW-2015-0335-0154 | EPA | None EPA-HQ-OW-2015-0335 | Response to Public Comments on EPA and USGS Technical Report Hydrologic Alteration 12-7-16 | Supporting & Related Material | Comment Response | 2016-12-21T05:00:00Z | 2016 | 12 | 2016-12-22T01:45:36Z | 0 | 0 | 09000064823ea9b1 | |||
| EPA-HQ-OW-2015-0335-0155 | EPA | None EPA-HQ-OW-2015-0335 | Response to External Peer Review Comments on EPA and USGS Technical Report Hydrologic Alteration 12-7-16 | Supporting & Related Material | Comment Response | 2016-12-21T05:00:00Z | 2016 | 12 | 2016-12-22T01:45:31Z | 0 | 0 | 09000064823ea9b2 | |||
| EPA-HQ-OW-2015-0335-0009 | EPA | None EPA-HQ-OW-2015-0335 | EPA-USGS Technical Report: Protecting Aquatic Life from Effects of Hydrologic Alteration | Notice | Extension of Comment Period | 2016-04-13T04:00:00Z | 2016 | 4 | 2016-06-23T01:01:49Z | 2016-08491 | 0 | 0 | 0900006481f64de6 | ||
| EPA-HQ-OW-2015-0335-0002 | EPA | None EPA-HQ-OW-2015-0335 | Draft EPA-USGS Technical Report Protecting Aquatic Life from Effects of Hydrologic Alteration | Supporting & Related Material | Report | 2016-03-01T05:00:00Z | 2016 | 3 | 2016-03-02T02:04:16Z | 0 | 0 | 0900006481e818c1 | |||
| EPA-HQ-OW-2015-0335-0001 | EPA | None EPA-HQ-OW-2015-0335 | Draft EPA-USGS Technical Report: Protecting Aquatic Life from Effects of Hydrologic Alteration | Notice | Notice of Data Availability | 2016-03-01T05:00:00Z | 2016 | 3 | 2016-03-01T05:00:00Z | 2016-06-18T03:59:59Z | 2016-07-09T01:00:40Z | 2016-04448 | 0 | 0 | 0900006481e95215 |
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;