documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OW-2011-0465" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2011-0465-0024 | EPA | None EPA-HQ-OW-2011-0465 | Supporting Statement, Information Collection Request for Water Quality Standards Regulation (Renewal) - Sept 2018 | Supporting & Related Material | ICR Supporting Statement | 2018-10-11T04:00:00Z | 2018 | 10 | 2018-10-11T14:40:35Z | 0 | 0 | 0900006483793739 | |||
| EPA-HQ-OW-2011-0465-0022 | EPA | None EPA-HQ-OW-2011-0465 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Water Quality Standards Regulation | Notice | Information Collection Request (ICR) | 2018-10-11T04:00:00Z | 2018 | 10 | 2018-10-11T04:00:00Z | 2018-11-14T04:59:59Z | 2018-10-11T14:37:23Z | 2018-22095 | 0 | 0 | 09000064837bddf8 |
| EPA-HQ-OW-2011-0465-0023 | EPA | None EPA-HQ-OW-2011-0465 | Response to Public Comments on Proposed Information Collection Request, Water Quality Standards Program (Renewal) - Sept 2018 | Supporting & Related Material | ICR Supporting Statement | 2018-10-11T04:00:00Z | 2018 | 10 | 2018-10-11T14:40:34Z | 0 | 0 | 0900006483793738 | |||
| EPA-HQ-OW-2011-0465-0014 | EPA | None EPA-HQ-OW-2011-0465 | Draft 2018 ICR Supporting Statement for Water Quality Standards Regulation (Renewal) | Supporting & Related Material | ICR Supporting Statement | 2018-06-19T04:00:00Z | 2018 | 6 | 2018-06-19T18:33:13Z | 0 | 0 | 090000648342cf9a | |||
| EPA-HQ-OW-2011-0465-0008 | EPA | None EPA-HQ-OW-2011-0465 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Water Quality Standards Regulation | Notice | Information Collection Request (ICR) | 2018-06-15T04:00:00Z | 2018 | 6 | 2018-06-15T04:00:00Z | 2018-08-15T03:59:59Z | 2018-08-15T01:04:24Z | 2018-13027 | 0 | 0 | 0900006483418c6b |
| EPA-HQ-OW-2011-0465-0009 | EPA | None EPA-HQ-OW-2011-0465 | Previous ICR for Water Quality Standards Regulation - 2015 | Supporting & Related Material | ICR Supporting Statement | 2018-06-15T04:00:00Z | 2018 | 6 | 2018-06-15T15:43:31Z | 0 | 0 | 09000064834081ce | |||
| EPA-HQ-OW-2011-0465-0013 | EPA | None EPA-HQ-OW-2011-0465 | Previous ICR for Water Quality Standards Regulatory Revisions - 2015 | Supporting & Related Material | ICR Supporting Statement | 2018-06-15T04:00:00Z | 2018 | 6 | 2018-06-18T11:59:11Z | 0 | 0 | 0900006483415379 | |||
| EPA-HQ-OW-2011-0465-0011 | EPA | None EPA-HQ-OW-2011-0465 | Draft ICR Supporting Statement for Water Quality Standards Regulation (Renewal) - Wrong file . Please see EPA-HQ-OW-2011-0465-0014. | Supporting & Related Material | ICR Supporting Statement | 2018-06-15T04:00:00Z | 2018 | 6 | 2018-06-19T15:00:49Z | 0 | 0 | 0900006483414f83 | |||
| EPA-HQ-OW-2011-0465-0010 | EPA | None EPA-HQ-OW-2011-0465 | Supporting spreadsheet for Draft ICR for Water Quality Standards Regulation (Renewal) | Supporting & Related Material | Data | 2018-06-15T04:00:00Z | 2018 | 6 | 2018-06-15T15:43:33Z | 0 | 0 | 0900006483414f80 | |||
| EPA-HQ-OW-2011-0465-0012 | EPA | None EPA-HQ-OW-2011-0465 | Previous ICR for Revised Interpretation of Clean Water Act Tribal Provision -- 2016 | Supporting & Related Material | ICR Supporting Statement | 2018-06-15T04:00:00Z | 2018 | 6 | 2018-06-18T11:59:09Z | 0 | 0 | 0900006483415377 |
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;