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-2009-0819" and posted_year = 2009 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-2009-0819-0026 | EPA | None EPA-HQ-OW-2009-0819 | Letter to Elizabeth E. Aldridge, Hunton and Williams, LLP from Peter S. Silva, Assistant Administrator, USEPA [DCN SE00113] | Supporting & Related Material | Letter, Memorandum, Email | 2009-12-31T05:00:00Z | 2009 | 12 | 2012-11-16T16:50:44Z | 0 | 0 | 0900006480a73f84 | |||
| EPA-HQ-OW-2009-0819-0024 | EPA | None EPA-HQ-OW-2009-0819 | Letter to Peter Silva, USEPA from Elizabeth E. Aldridge, Hunton and Williams L.L.P on behalf of the Utility Water Act Group (UWAG) [DCN SE00112] | Supporting & Related Material | Letter, Memorandum, Email | 2009-12-30T05:00:00Z | 2009 | 12 | 2012-11-16T16:50:24Z | 0 | 0 | 0900006480a73f81 | |||
| EPA-HQ-OW-2009-0819-0004 | EPA | None EPA-HQ-OW-2009-0819 | Steam Electric Power Generating Point Source Category: Final Detailed Study Report [EPA 821-R-09-008] [DCN 00003] | Supporting & Related Material | Publication - USEPA | 2009-10-29T04:00:00Z | 2009 | 10 | 2012-11-16T16:49:57Z | 0 | 0 | 0900006480a4c31a | |||
| EPA-HQ-OW-2009-0819-0003 | EPA | None EPA-HQ-OW-2009-0819 | Draft Questionnaire for the Steam Electric Power Generating Effluent Guidelines [DCN 00002] | Supporting & Related Material | Form | 2009-10-29T04:00:00Z | 2009 | 10 | 2009-10-29T13:34:20Z | 0 | 0 | 0900006480a49f5a | |||
| EPA-HQ-OW-2009-0819-0001 | EPA | None EPA-HQ-OW-2009-0819 | Agency Information Collection Activities; Proposed Collection; Comment Request; Proposed Information Collection Request for the Steam Electric Power Generating Effluent Guidelines; EPA ICR No. 2368.01, OMB Control No. 2040-NEW | Notice | Federal Register Document | 2009-10-29T04:00:00Z | 2009 | 10 | 2009-10-29T04:00:00Z | 2009-12-29T04:59:59Z | 2009-10-29T13:34:04Z | E9-25988 | 0 | 0 | 0900006480a4d7f4 |
| EPA-HQ-OW-2009-0819-0002 | EPA | None EPA-HQ-OW-2009-0819 | Supporting Statement for the Draft Questionnaire for the Steam Electric Power Generating Effluent Guidelines Information Collection Request [DCN 00001] | Supporting & Related Material | ICR Supporting Statement | 2009-10-29T04:00:00Z | 2009 | 10 | 2009-10-29T13:34:16Z | 0 | 0 | 0900006480a49f59 |
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;