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-2023-0346" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2023-0346-0003 | EPA | None EPA-HQ-OW-2023-0346 | Sackett v. Environmental Protection Agency, 598 U.S. _ (2023) | Supporting & Related Material | Decision | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-09T00:39:52Z | 0 | 0 | 0900006485dee312 | |||
| EPA-HQ-OW-2023-0346-0002 | EPA | None EPA-HQ-OW-2023-0346 | Revised Definition of Waters of the United States (83 FR 3004, January 18, 2023) | Supporting & Related Material | Publication - Previous/Related FR Notice | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-09T00:40:21Z | 0 | 0 | 0900006485decb6f | |||
| EPA-HQ-OW-2023-0346-0007 | EPA | None EPA-HQ-OW-2023-0346 | County of Maui, Hawaii v. Hawaii Wildlife Fund, 140 S. Ct. 1462 (2020) | Supporting & Related Material | Decision | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-09T00:40:35Z | 0 | 0 | 0900006485f4e7d3 | |||
| EPA-HQ-OW-2023-0346-0001 | EPA | None EPA-HQ-OW-2023-0346 | Revised Definition of Waters of the United States; Conforming; Department of the Army, Corps of Engineers, Department of Defense, and Environmental Protection Agency | Rule | Final Rule | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-08T13:32:31Z | 2023-18929 | 0 | 0 | 0900006485f5bbf8 | ||
| EPA-HQ-OW-2023-0346-0004 | EPA | None EPA-HQ-OW-2023-0346 | United States v. Riverside Bayview Homes, 474 U.S. 121 (1985) | Supporting & Related Material | Decision | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-09T00:40:05Z | 0 | 0 | 0900006485f4e7cf | |||
| EPA-HQ-OW-2023-0346-0006 | EPA | None EPA-HQ-OW-2023-0346 | Rapanos v. United States, 547 U.S. 715 (2006) | Supporting & Related Material | Decision | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-09T00:39:39Z | 0 | 0 | 0900006485f4e7d2 | |||
| EPA-HQ-OW-2023-0346-0008 | EPA | None EPA-HQ-OW-2023-0346 | Regulatory Text Changes to the Definition of Waters of the United States at 33 CFR 328.3 and 40 CFR 120.2 | Supporting & Related Material | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-09T00:39:26Z | 0 | 0 | 0900006485f50265 | ||||
| EPA-HQ-OW-2023-0346-0005 | EPA | None EPA-HQ-OW-2023-0346 | Solid Waste Agency of Northern Cook County v. U.S. Army Corps of Engineers, 531 U.S. 159 (2001) | Supporting & Related Material | Decision | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-09T00:40:48Z | 0 | 0 | 0900006485f4e7d0 | |||
| EPA-HQ-OW-2023-0346-0009 | EPA | None EPA-HQ-OW-2023-0346 | E.O. 12866 Meetings for the Conforming Rule Amending the Revised Definition of "Waters of the United States" | Supporting & Related Material | Meeting Materials | 2023-09-08T04:00:00Z | 2023 | 9 | 2023-09-09T00:39:13Z | 0 | 0 | 0900006485f503cd |
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;