documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "EPA-HQ-OW-2005-0023" and posted_year = 2017 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-2005-0023-0026 | EPA | None EPA-HQ-OW-2005-0023 | Supporting Statement 0220.13 - Second Notice | Supporting & Related Material | ICR Supporting Statement | 2017-10-10T04:00:00Z | 2017 | 10 | 2017-10-10T14:21:26Z | 0 | 0 | 0900006482ba6328 | |||
| EPA-HQ-OW-2005-0023-0025 | EPA | None EPA-HQ-OW-2005-0023 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Clean Water Act Section 404 State-Assumed Programs (Renewal) | Notice | Information Collection Request (ICR) | 2017-10-10T04:00:00Z | 2017 | 10 | 2017-10-10T04:00:00Z | 2017-11-10T04:59:59Z | 2017-11-08T02:03:08Z | 2017-21655 | 0 | 0 | 0900006482bb1af8 |
| EPA-HQ-OW-2005-0023-0022 | EPA | None EPA-HQ-OW-2005-0023 | Agency Information Collection Activities; Proposals, Submissions, and Approvals:Clean Water Act State-Assumed Programs - Correction | Notice | Information Collection Request (ICR) | 2017-08-18T04:00:00Z | 2017 | 8 | 2017-08-18T18:49:05Z | C1-2017-13905 | 0 | 0 | 0900006482a60085 | ||
| EPA-HQ-OW-2005-0023-0018 | EPA | None EPA-HQ-OW-2005-0023 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Clean Water Act State-Assumed Programs | Notice | Information Collection Request (ICR) | 2017-07-03T04:00:00Z | 2017 | 7 | 2017-07-03T04:00:00Z | 2017-09-02T03:59:59Z | 2017-09-02T01:02:23Z | 2017-13905 | 0 | 0 | 09000064827ddd68 |
| EPA-HQ-OW-2005-0023-0019 | EPA | None EPA-HQ-OW-2005-0023 | Supporting Statement 0220.13 1st Notice | Supporting & Related Material | ICR Supporting Statement | 2017-07-03T04:00:00Z | 2017 | 7 | 2017-07-03T14:13:33Z | 0 | 0 | 09000064827aed6f | |||
| EPA-HQ-OW-2005-0023-0017 | EPA | None EPA-HQ-OW-2005-0023 | Agency Information Collection Activities OMB Responses: Approvals: Information Collection Request (ICR) for Clean Water Act Section 404 State-assumed Programs | Notice | Information Collection Request (ICR) | 2017-03-09T05:00:00Z | 2017 | 3 | 2017-03-09T05:00:00Z | 2017-03-09T17:38:20Z | 0 | 0 | 09000064824fc72a |
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;