documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "EPA-HQ-OAR-2003-0122" and posted_year = 1997 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_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-OAR-2003-0122-0026 | EPA | Electric Utility Generating Units Legacy Docket ID #: A-90-6 EPA-HQ-OAR-2003-0122 | Letter to John W. Boston, Vice President, Wisconsin Electric Power Company from Lee M. Thomas, USEPA; re: requirements to the proposed life extension project at the Port Washington steam electric generating station [A-90-06-II-C-11] | Supporting & Related Material | Letter, Memorandum, Email | 1997-08-26T04:00:00Z | 1997 | 8 | 2013-10-28T14:02:22Z | 0 | 0 | 09000064800bb621 | |||
| EPA-HQ-OAR-2003-0122-0024 | EPA | Electric Utility Generating Units Legacy Docket ID #: A-90-6 EPA-HQ-OAR-2003-0122 | Letter to Linda G. Stuntz, Deputy Under Secretary, U.S. Department of Energy from William G. Rosenberg, Assistant Administrator for Air and Radiation, USEPA; re: interpretative ruling on emissions control system requirements [A-90-06-II-C-4] | Supporting & Related Material | Letter, Memorandum, Email | 1997-08-26T04:00:00Z | 1997 | 8 | 2013-10-28T13:58:01Z | 0 | 0 | 09000064800bb616 | |||
| EPA-HQ-OAR-2003-0122-0027 | EPA | Electric Utility Generating Units Legacy Docket ID #: A-90-6 EPA-HQ-OAR-2003-0122 | Letter to John W. Boston, Vice President, Wisconsin Electric Power Company from Don R. Clay, Acting Assistant Administrator for Air and Radiation, USEPA; re: revised final determination concerning the proposed life extension of the Port Washington steam electric steam generating station [A-90-06-II-C-12] | Supporting & Related Material | Letter, Memorandum, Email | 1997-08-26T04:00:00Z | 1997 | 8 | 2013-10-28T14:03:28Z | 0 | 0 | 09000064800bb629 | |||
| EPA-HQ-OAR-2003-0122-0028 | EPA | Electric Utility Generating Units Legacy Docket ID #: A-90-6 EPA-HQ-OAR-2003-0122 | Letter to John Boston, Vice President, Wisconsin Electric Power Company, from William G. Rosenberg, Assistant Administrator for Air and Radiation, USEPA; re: revised PSD applicability determination [A-90-06-II-C-20] | Supporting & Related Material | Letter, Memorandum, Email | 1997-08-26T04:00:00Z | 1997 | 8 | 2013-10-28T14:04:33Z | 0 | 0 | 09000064800bb630 | |||
| EPA-HQ-OAR-2003-0122-0025 | EPA | Electric Utility Generating Units Legacy Docket ID #: A-90-6 EPA-HQ-OAR-2003-0122 | Letter to Patrick W. McCarter, Senior Vice President, Electric Operations, Public Service Company of Colorado from John B. Rasnic, Acting Director, OAQPS/USEPA; re: typographical error in the July 23, 1990 "no action" assurance letter [A-90-06-II-C-6] | Supporting & Related Material | Letter, Memorandum, Email | 1997-08-26T04:00:00Z | 1997 | 8 | 2013-10-28T13:59:40Z | 0 | 0 | 09000064800bb61c |
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;