documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OW-2005-0023" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, 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-0009 | EPA | None EPA-HQ-OW-2005-0023 | Supporting Statement ICR# 0220.10 - CWA Section 404 State-Assumed Program | Supporting & Related Material | ICR Supporting Statement | 2006-12-13T05:00:00Z | 2006 | 12 | 2006-12-14T16:54:16Z | 0 | 0 | 09000064801ebb9d | |||
| EPA-HQ-OW-2005-0023-0007 | EPA | None EPA-HQ-OW-2005-0023 | Agency Information Collection Activities; Submission to OMB for Review and Approval; Comment Request; Clean Water Act Section 404 State-Assumed Programs; EPA ICR No. 0220.10, OMB Control Number 2040- 0168 | Notice | Federal Register Document | 2006-12-12T05:00:00Z | 2006 | 12 | 2006-12-12T05:00:00Z | 2007-01-12T04:59:59Z | 2008-01-08T21:24:05Z | E6-21116 | 0 | 0 | 09000064801eb55d |
| EPA-HQ-OW-2005-0023-0001 | EPA | None EPA-HQ-OW-2005-0023 | Agency Information Collection Activities: Proposed Collection; Comment Request; Clean Water Act Section 404 State-Assumed Programs; EPA ICR No. 0220.10, OMB Control No. 2040-0168 | Supporting & Related Material | Federal Register Document | 2006-07-11T14:28:40Z | 2006 | 7 | 2006-12-13T12:47:11Z | 0 | 0 | 0900006480199cde | |||
| EPA-HQ-OW-2005-0023-0005 | EPA | None EPA-HQ-OW-2005-0023 | Part 233: 404 State Program Regulations - Subpart G_Eligible Indian Tribes and Subpart H_Approved State Programs | Supporting & Related Material | Other | 2006-07-11T04:00:00Z | 2006 | 7 | 2006-09-02T19:25:51Z | 0 | 0 | 09000064800d09c6 | |||
| EPA-HQ-OW-2005-0023-0004 | EPA | None EPA-HQ-OW-2005-0023 | Part 233: 404 State Program Regulations | Supporting & Related Material | Other | 2006-07-11T04:00:00Z | 2006 | 7 | 2006-09-02T19:25:51Z | 0 | 0 | 09000064800d09bf | |||
| EPA-HQ-OW-2005-0023-0003 | EPA | None EPA-HQ-OW-2005-0023 | Clean Water Act, Section 404 | Supporting & Related Material | Other | 2006-07-11T04:00:00Z | 2006 | 7 | 2006-09-02T19:25:50Z | 0 | 0 | 09000064800d09b9 | |||
| EPA-HQ-OW-2005-0023-0006 | EPA | None EPA-HQ-OW-2005-0023 | Supporting Statement for ICR 0220.10, OMB Number 2040-0168 | Supporting & Related Material | ICR Supporting Statement | 2006-07-11T04:00:00Z | 2006 | 7 | 2006-09-02T19:25:51Z | 0 | 0 | 090000648019a460 | |||
| EPA-HQ-OW-2005-0023-0002 | EPA | None EPA-HQ-OW-2005-0023 | 2002 ICR for CWA - Section 404 | Supporting & Related Material | 2006-07-11T04:00:00Z | 2006 | 7 | 2006-09-02T19:25:50Z | 0 | 0 | 09000064800d09b5 |
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;