documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where docket_id = "EPA-HQ-OW-2013-0710" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, withdrawn, posted_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-2013-0710-0121 | EPA | None EPA-HQ-OW-2013-0710 | Supporting document for EPA decision | Supporting & Related Material | Report | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:06:08Z | 0 | 0 | 09000064823e5ae4 | |||
| EPA-HQ-OW-2013-0710-0118 | EPA | None EPA-HQ-OW-2013-0710 | Public Hearing Testimony Submissions | Supporting & Related Material | Transcript | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:05:58Z | 0 | 0 | 09000064821d7950 | |||
| EPA-HQ-OW-2013-0710-0115 | EPA | None EPA-HQ-OW-2013-0710 | 9-10-14 MI AG Response re Utility Line Email | Supporting & Related Material | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:05:39Z | 0 | 0 | 09000064821d794d | ||||
| EPA-HQ-OW-2013-0710-0122 | EPA | None EPA-HQ-OW-2013-0710 | PA 98 Comment Responsiveness Summary | Supporting & Related Material | Comment Response | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:06:03Z | 0 | 0 | 09000064823e5ae5 | |||
| EPA-HQ-OW-2013-0710-0116 | EPA | None EPA-HQ-OW-2013-0710 | 11-24-14 EPA letter to MDEQ Public Act 98 | Supporting & Related Material | Letter | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:05:49Z | 0 | 0 | 09000064821d794e | |||
| EPA-HQ-OW-2013-0710-0120 | EPA | None EPA-HQ-OW-2013-0710 | Tribal Consultation Memo | Supporting & Related Material | Memorandum | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:05:29Z | 0 | 0 | 09000064821d7600 | |||
| EPA-HQ-OW-2013-0710-0119 | EPA | None EPA-HQ-OW-2013-0710 | Federal Consultation Memo | Supporting & Related Material | Memorandum | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:05:34Z | 0 | 0 | 09000064821d75ff | |||
| EPA-HQ-OW-2013-0710-0112 | EPA | None EPA-HQ-OW-2013-0710 | State Program Requirements under Clean Water Act: Michigan's Section 404 Program, Revisions; Approval | Notice | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-13T15:12:41Z | 2016-29888 | 0 | 0 | 09000064823fe8b5 | |||
| EPA-HQ-OW-2013-0710-0113 | EPA | None EPA-HQ-OW-2013-0710 | Federal Agency Invitation to Comment | Supporting & Related Material | Letter | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:06:13Z | 0 | 0 | 09000064821d794b | |||
| EPA-HQ-OW-2013-0710-0114 | EPA | None EPA-HQ-OW-2013-0710 | Tribal Invitation to consult | Supporting & Related Material | Letter | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:05:44Z | 0 | 0 | 09000064821d794c | |||
| EPA-HQ-OW-2013-0710-0117 | EPA | None EPA-HQ-OW-2013-0710 | MI Letter to EPA 05.27.15 (Final) | Supporting & Related Material | Letter | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-14T02:05:54Z | 0 | 0 | 09000064821d794f | |||
| EPA-HQ-OW-2013-0710-0111 | EPA | None EPA-HQ-OW-2013-0710 | PA 98 Comment Responsiveness Summary | Supporting & Related Material | 2016-11-16T00:00:00Z | 2016 | 11 | 2016-12-13T20:30:54Z | 0 | 1 | 09000064821d7adc | ||||
| EPA-HQ-OW-2013-0710-0110 | EPA | None EPA-HQ-OW-2013-0710 | MDEQ request for EPA Review | Supporting & Related Material | Letter | 2016-10-07T04:00:00Z | 2016 | 10 | 2016-12-13T15:14:36Z | 0 | 0 | 09000064821d794a |
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;