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-2017-0203" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2017-0203-9189 | EPA | None EPA-HQ-OW-2017-0203 | Documentation of OMB Review Under Executive Order 12866 for “Definition of ‘Waters of the United States’ – Recodification of Pre-existing Rules” | Supporting & Related Material | Interagency Review | 2017-09-27T04:00:00Z | 2017 | 9 | 2017-09-28T01:40:50Z | 0 | 0 | 0900006482b7ef1a | |||
| EPA-HQ-OW-2017-0203-2150 | EPA | None EPA-HQ-OW-2017-0203 | Definition of "Waters of the United States''-Recodification of Pre-existing Rules; Extension of Comment Period | Proposed Rule | 2017-08-22T04:00:00Z | 2017 | 8 | 2019-02-27T02:02:35Z | 2017-17739 | 0 | 0 | 0900006482a9401d | |||
| EPA-HQ-OW-2017-0203-0004 | EPA | None EPA-HQ-OW-2017-0203 | EPA Stakeholder Meetings for Docket EPA-HQ-OW-2017-0203 Occurring Before the Signature of the Proposed Rule (Prior to June 27, 2017) | Supporting & Related Material | Meeting Materials | 2017-07-27T04:00:00Z | 2017 | 7 | 2017-08-06T04:10:27Z | 0 | 0 | 090000648296cc32 | |||
| EPA-HQ-OW-2017-0203-0002 | EPA | None EPA-HQ-OW-2017-0203 | Economic Analysis for the Proposed Definition of “Waters of the United States” – Recodification of Pre-existing Rules | Supporting & Related Material | Economic Analysis | 2017-07-27T04:00:00Z | 2017 | 7 | 2017-08-06T05:05:59Z | 0 | 0 | 09000064827c3cae | |||
| EPA-HQ-OW-2017-0203-0005 | EPA | None EPA-HQ-OW-2017-0203 | Notice of Intention To Review and Rescind or Revise the Clean Water Rule | Notice | Notice of Intent | 2017-07-27T04:00:00Z | 2017 | 7 | 2017-07-27T04:00:00Z | 2017-08-06T05:06:05Z | 0 | 0 | 09000064827dea5d | ||
| EPA-HQ-OW-2017-0203-0003 | EPA | None EPA-HQ-OW-2017-0203 | E.O. 12866 Review Version of Definition of Waters of the United States - Recodification of Pre-existing Rules and Economic Analysis | Supporting & Related Material | Office of Management and Budget (OMB) | 2017-07-27T04:00:00Z | 2017 | 7 | 2017-08-06T04:19:20Z | 0 | 0 | 090000648296b44a | |||
| EPA-HQ-OW-2017-0203-0001 | EPA | None EPA-HQ-OW-2017-0203 | Definition of Waters of United States - Recodification of Pre-Existing Rules | Proposed Rule | 2017-07-27T04:00:00Z | 2017 | 7 | 2017-07-27T04:00:00Z | 2017-09-28T03:59:59Z | 2018-02-16T02:03:23Z | 2017-13997 | 0 | 0 | 0900006482976eea |
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;