documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "EPA-HQ-OAR-2024-0089" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 4
| 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-2024-0089-0008 | EPA | 610 Review of Standards of Performance for New Residential Wood Heaters, New Residential Hydronic Heaters and Forced-Air Furnaces EPA-HQ-OAR-2024-0089 | Spring 2025 Unified Agenda of Regulatory and Deregulatory Actions | Notice | 2025-09-22T04:00:00Z | 2025 | 9 | 2025-09-22T04:00:00Z | 2025-09-22T17:14:41Z | 2025-18333 | 0 | 0 | 09000064b8fce8fd | ||
| EPA-HQ-OAR-2024-0089-0007 | EPA | 610 Review of Standards of Performance for New Residential Wood Heaters, New Residential Hydronic Heaters and Forced-Air Furnaces EPA-HQ-OAR-2024-0089 | HPBA visit - OAQPS 5.0 | Supporting & Related Material | Meeting Materials | 2025-04-08T04:00:00Z | 2025 | 4 | 2025-04-08T14:35:00Z | 0 | 0 | 0900006486a734cc | |||
| EPA-HQ-OAR-2024-0089-0006 | EPA | 610 Review of Standards of Performance for New Residential Wood Heaters, New Residential Hydronic Heaters and Forced-Air Furnaces EPA-HQ-OAR-2024-0089 | Wood Heater FINAL-610 Review Reports 20250314 | Supporting & Related Material | Report | 2025-03-20T04:00:00Z | 2025 | 3 | 2025-03-20T17:10:58Z | 0 | 0 | 09000064869e7cc4 | |||
| EPA-HQ-OAR-2024-0089-0001 | EPA | 610 Review of Standards of Performance for New Residential Wood Heaters, New Residential Hydronic Heaters and Forced-Air Furnaces EPA-HQ-OAR-2024-0089 | Spring 2024 Unified Agenda of Regulatory and Deregulatory Actions | Proposed Rule | 2024-08-16T04:00:00Z | 2024 | 8 | 2024-08-16T04:00:00Z | 2024-10-17T03:59:59Z | 2024-10-17T01:01:19Z | 2024-16459 | 0 | 0 | 090000648664d9b1 |
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;