documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-R08-OAR-2025-0387" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), last_modified (date)
document_type 2
agency_id 1
- EPA 10
| 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-R08-OAR-2025-0387-0005 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | Southern_Ute_Consultation_Ltr_SIMCOE_TS4_TS6_SIGNED | Supporting & Related Material | 2026-03-19T04:00:00Z | 2026 | 3 | 2026-03-19T23:50:12Z | 0 | 0 | 09000064b9225a34 | ||||
| EPA-R08-OAR-2025-0387-0007 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | SIMCOE LLC Treating Site 4 and Treating Site 6 PSD Permit Recission email.2 | Supporting & Related Material | 2026-03-19T04:00:00Z | 2026 | 3 | 2026-03-19T23:50:25Z | 0 | 0 | 09000064b9225a36 | ||||
| EPA-R08-OAR-2025-0387-0003 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | 2025-04-30 Treating Site 4 Request to Rescind PSD Permit and SUIT Inspection Report | Supporting & Related Material | 2026-03-19T04:00:00Z | 2026 | 3 | 2026-03-19T23:49:58Z | 0 | 0 | 09000064b9225a32 | ||||
| EPA-R08-OAR-2025-0387-0004 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | Southern_Ute_Consultation_Ltr_SIMCOE_TS4_TS6_Email | Supporting & Related Material | 2026-03-19T04:00:00Z | 2026 | 3 | 2026-03-19T23:50:03Z | 0 | 0 | 09000064b9225a33 | ||||
| EPA-R08-OAR-2025-0387-0008 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | SIMCOE LLC Treating Site 4 and Treating Site 6 PSD Permit Recission email.4 | Supporting & Related Material | 2026-03-19T04:00:00Z | 2026 | 3 | 2026-03-19T23:50:31Z | 0 | 0 | 09000064b9225a37 | ||||
| EPA-R08-OAR-2025-0387-0002 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | SIMCOE_TreatingSite_4_and_6_PSD_Permit_RescissionLtr3_17_2026_SIGNED | Other | 2026-03-19T04:00:00Z | 2026 | 3 | 2026-03-19T04:00:00Z | 2026-03-19T23:49:45Z | 0 | 0 | 09000064b92267fd | |||
| EPA-R08-OAR-2025-0387-0006 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | administrative_record_bp_ts1 (2) | Supporting & Related Material | 2026-03-19T04:00:00Z | 2026 | 3 | 2026-03-19T23:50:18Z | 0 | 0 | 09000064b9225a35 | ||||
| EPA-R08-OAR-2025-0387-0010 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | SIMCOE LLC Treating Site 4 PSD Permit Recission email | Supporting & Related Material | 2026-03-19T04:00:00Z | 2026 | 3 | 2026-03-19T23:50:44Z | 0 | 0 | 09000064b9225ac5 | ||||
| EPA-R08-OAR-2025-0387-0009 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | SIMCOE LLC Treating Site 4 and Treating Site 6 PSD Permit Recission email.3 | Supporting & Related Material | 2026-03-19T04:00:00Z | 2026 | 3 | 2026-03-19T23:50:37Z | 0 | 0 | 09000064b9225a38 | ||||
| EPA-R08-OAR-2025-0387-0001 | EPA | SIMCOE, LLC - Treating Site #4, PSD Permit Rescission EPA-R08-OAR-2025-0387 | 2025-04-30 Treating Site 4 Request to Rescind PSD Permit | Supporting & Related Material | 2025-06-17T04:00:00Z | 2025 | 6 | 2025-06-18T01:58:51Z | 0 | 0 | 09000064b8e16f56 |
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;