documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "EPA-HQ-OW-2010-0782" and posted_year = 2011 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-2010-0782-0173 | EPA | None EPA-HQ-OW-2010-0782 | Availability of an Environmental Assessment (EA) and Finding of No Significant Impact (FONSI) | Notice | Notice of Data Availability | 2011-12-23T05:00:00Z | 2011 | 12 | 2011-12-23T05:00:00Z | 2012-01-24T04:59:59Z | 2011-12-23T14:29:39Z | 2011-32945 | 0 | 0 | 0900006480f887e4 |
| EPA-HQ-OW-2010-0782-0174 | EPA | None EPA-HQ-OW-2010-0782 | Finding of No Significant Impact (FONSI) | Supporting & Related Material | Letter | 2011-12-23T05:00:00Z | 2011 | 12 | 2011-12-23T15:17:52Z | 0 | 0 | 0900006480f881d4 | |||
| EPA-HQ-OW-2010-0782-0175 | EPA | None EPA-HQ-OW-2010-0782 | Environmental Assessment (EA) | Supporting & Related Material | Report | 2011-12-23T05:00:00Z | 2011 | 12 | 2011-12-23T15:17:52Z | 0 | 0 | 0900006480f88261 | |||
| EPA-HQ-OW-2010-0782-0020 | EPA | None EPA-HQ-OW-2010-0782 | Draft National Pollutant Discharge Elimination System (NPDES) General Permit for Stormwater Discharges from Construction Activities; Extension of Comment Period | Notice | Extension of Comment Period | 2011-06-17T04:00:00Z | 2011 | 6 | 2011-06-17T13:05:49Z | 2011-15101 | 0 | 0 | 0900006480e52004 | ||
| EPA-HQ-OW-2010-0782-0008 | EPA | None EPA-HQ-OW-2010-0782 | Initiation of Scoping for an Environmental Assessment (EA) | Notice | Federal Register Document | 2011-05-03T04:00:00Z | 2011 | 5 | 2011-05-03T04:00:00Z | 2011-05-28T03:59:59Z | 2011-05-03T16:04:21Z | 2011-10736 | 0 | 0 | 0900006480c3e0d8 |
| EPA-HQ-OW-2010-0782-0002 | EPA | None EPA-HQ-OW-2010-0782 | Economic Analysis for the Proposed Construction General Permit (CGP) | Supporting & Related Material | Analysis | 2011-04-25T04:00:00Z | 2011 | 4 | 2011-04-25T14:45:54Z | 0 | 0 | 0900006480c227f1 | |||
| EPA-HQ-OW-2010-0782-0004 | EPA | None EPA-HQ-OW-2010-0782 | Summary of Discussion with State Permitting Authorities Related to Buffer Requirements | Supporting & Related Material | Report | 2011-04-25T04:00:00Z | 2011 | 4 | 2011-04-25T14:45:59Z | 0 | 0 | 0900006480c22856 | |||
| EPA-HQ-OW-2010-0782-0001 | EPA | None EPA-HQ-OW-2010-0782 | Draft National Pollutant Discharge Elimination System (NPDES) General Permit for Stormwater Discharges from Construction Activities | Notice | Federal Register Document | 2011-04-25T04:00:00Z | 2011 | 4 | 2011-04-25T04:00:00Z | 2011-07-12T03:59:59Z | 2011-06-17T13:09:12Z | 2011-09929 | 0 | 0 | 0900006480c37263 |
| EPA-HQ-OW-2010-0782-0006 | EPA | None EPA-HQ-OW-2010-0782 | Proposed Construction General Permit (CGP) Reference List | Supporting & Related Material | Fact/Data Sheet | 2011-04-25T04:00:00Z | 2011 | 4 | 2011-04-25T14:46:04Z | 0 | 0 | 0900006480c23116 | |||
| EPA-HQ-OW-2010-0782-0003 | EPA | None EPA-HQ-OW-2010-0782 | List of Permit Changes Made During Inter-Agency Review | Supporting & Related Material | Letter, Memorandum, Email | 2011-04-25T04:00:00Z | 2011 | 4 | 2011-04-25T14:45:57Z | 0 | 0 | 0900006480c22855 | |||
| EPA-HQ-OW-2010-0782-0005 | EPA | None EPA-HQ-OW-2010-0782 | Water Quality Standards for Areas Where USEPA is the Permitting Authority | Supporting & Related Material | Data | 2011-04-25T04:00:00Z | 2011 | 4 | 2011-04-25T14:46:01Z | 0 | 0 | 0900006480c22858 |
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;