documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OW-2015-0804" and posted_year = 2020 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-0804-0440 | EPA | None EPA-HQ-OW-2015-0804 | Maine RTC Clean Final | Supporting & Related Material | Comment Response | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-22T02:05:25Z | 0 | 0 | 090000648497d607 | |||
| EPA-HQ-OW-2015-0804-0439 | EPA | None EPA-HQ-OW-2015-0804 | Withdrawal of Certain Federal Water Quality Criteria Applicable to Maine | Rule | Withdrawal | 2020-12-21T05:00:00Z | 2020 | 12 | 2020-12-21T13:32:08Z | 2020-26998 | 0 | 0 | 09000064849aef43 | ||
| EPA-HQ-OW-2015-0804-0434 | EPA | None EPA-HQ-OW-2015-0804 | 9-30-20 Slides - Public Hearing for Proposed Withdrawal of Certain Federal Water Quality Standards Applicable to Maine - 508c | Supporting & Related Material | Meeting Materials | 2020-10-20T04:00:00Z | 2020 | 10 | 2020-10-21T00:56:29Z | 0 | 0 | 09000064848df906 | |||
| EPA-HQ-OW-2015-0804-0435 | EPA | None EPA-HQ-OW-2015-0804 | 10-01-20 Slides - Public Hearing for Proposed Withdrawal of Certain Federal Water Quality Standards Applicable to Maine - 508c | Supporting & Related Material | Meeting Materials | 2020-10-20T04:00:00Z | 2020 | 10 | 2020-10-21T00:57:10Z | 0 | 0 | 09000064848df908 | |||
| EPA-HQ-OW-2015-0804-0425 | EPA | None EPA-HQ-OW-2015-0804 | EPA's Nov 6, 2019 Approval of Maine's Sustenance Fishing Designated Use Subcategory | Supporting & Related Material | Letter | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-10-04T19:44:46Z | 0 | 0 | 09000064847ac343 | |||
| EPA-HQ-OW-2015-0804-0426 | EPA | None EPA-HQ-OW-2015-0804 | Summary of Tribal Consultation - ME WQS July 2020 | Supporting & Related Material | Memorandum | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-10-04T19:44:47Z | 0 | 0 | 09000064847ac344 | |||
| EPA-HQ-OW-2015-0804-0428 | EPA | None EPA-HQ-OW-2015-0804 | Maine DEP 4 24 2020 Submission of Revised HHC to EPA for 303(c) Review | Supporting & Related Material | Letter | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-10-04T19:44:40Z | 0 | 0 | 09000064847ac03e | |||
| EPA-HQ-OW-2015-0804-0423 | EPA | None EPA-HQ-OW-2015-0804 | EPA's 2019 Public Notice of its Proposal to Revise its 2015 WQS Decisions in Maine | Supporting & Related Material | Press Release, Public Announcement/Notice | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-10-04T19:44:49Z | 0 | 0 | 09000064847ac341 | |||
| EPA-HQ-OW-2015-0804-0427 | EPA | None EPA-HQ-OW-2015-0804 | Cover Letter - Revised 2015 Decisions 05-27-20 | Supporting & Related Material | Letter | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-10-04T19:44:42Z | 0 | 0 | 09000064847ac3d6 | |||
| EPA-HQ-OW-2015-0804-0422 | EPA | None EPA-HQ-OW-2015-0804 | Certain Federal Water Quality Criteria Applicable to Maine; Withdrawal | Proposed Rule | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-09-03T04:00:00Z | 2020-10-20T03:59:59Z | 2020-10-21T01:01:51Z | 2020-18081 | 0 | 0 | 0900006484840622 | |
| EPA-HQ-OW-2015-0804-0424 | EPA | None EPA-HQ-OW-2015-0804 | EPA's June 23, 2020 Approval of Maine's New and Revised HHC Submitted April 24, 2020 | Supporting & Related Material | Letter | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-10-04T19:44:44Z | 0 | 0 | 09000064847ac342 |
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;