documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "EPA-R01-OAR-2023-0187" and posted_year = 2024 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)
| 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-R01-OAR-2023-0187-0031 | EPA | None EPA-R01-OAR-2023-0187 | Last Coal Power Plants In New England Will Close - Conservation Law Foundation | Supporting & Related Material | 2024-11-07T05:00:00Z | 2024 | 11 | 2024-11-08T01:39:35Z | 0 | 0 | 090000648676aa7b | ||||
| EPA-R01-OAR-2023-0187-0030 | EPA | None EPA-R01-OAR-2023-0187 | 8-20-2019_-_regional_haze_guidance_final_guidance | Supporting & Related Material | 2024-11-07T05:00:00Z | 2024 | 11 | 2024-11-08T01:40:14Z | 0 | 0 | 09000064867529df | ||||
| EPA-R01-OAR-2023-0187-0028 | EPA | None EPA-R01-OAR-2023-0187 | SC NH RACT Comments_8-9-23 | Supporting & Related Material | 2024-11-07T05:00:00Z | 2024 | 11 | 2024-11-08T01:39:48Z | 0 | 0 | 090000648674237e | ||||
| EPA-R01-OAR-2023-0187-0029 | EPA | None EPA-R01-OAR-2023-0187 | clarifications-regarding-regional-haze-state-implementation-plans-for-the-second-implementation-period | Supporting & Related Material | 2024-11-07T05:00:00Z | 2024 | 11 | 2024-11-08T01:40:00Z | 0 | 0 | 09000064867529de | ||||
| EPA-R01-OAR-2023-0187-0032 | EPA | None EPA-R01-OAR-2023-0187 | GSP PRESS RELEASE FINAL 032724_ Final | Supporting & Related Material | 2024-11-07T05:00:00Z | 2024 | 11 | 2024-11-08T01:40:26Z | 0 | 0 | 090000648676aa7c | ||||
| EPA-R01-OAR-2023-0187-0034 | EPA | None EPA-R01-OAR-2023-0187 | Air Quality State Implementation Plans; Approvals and Promulgations: New Hampshire; Regional Haze State Implementation Plan for the Second Implementation Period | Rule | 2024-11-07T05:00:00Z | 2024 | 11 | 2024-11-07T05:00:00Z | 2024-11-07T14:39:16Z | 2024-25679 | 0 | 0 | 09000064868030b1 | ||
| EPA-R01-OAR-2023-0187-0033 | EPA | None EPA-R01-OAR-2023-0187 | Air Pollution Control Technology Fact Sheet | Supporting & Related Material | 2024-11-07T05:00:00Z | 2024 | 11 | 2024-11-08T01:39:22Z | 0 | 0 | 09000064867ba46e | ||||
| EPA-R01-OAR-2023-0187-0026 | EPA | None EPA-R01-OAR-2023-0187 | 89 FR 34137 | Supporting & Related Material | 2024-09-18T04:00:00Z | 2024 | 9 | 2024-09-19T01:18:11Z | 0 | 0 | 0900006486743870 | ||||
| EPA-R01-OAR-2023-0187-0025 | EPA | None EPA-R01-OAR-2023-0187 | Env-A 1300 certified eff 8-15-18 | Supporting & Related Material | 2024-09-18T04:00:00Z | 2024 | 9 | 2024-09-19T01:17:44Z | 0 | 0 | 090000648674371d | ||||
| EPA-R01-OAR-2023-0187-0027 | EPA | None EPA-R01-OAR-2023-0187 | Sierra Club Press Release 3272024 | Supporting & Related Material | 2024-09-18T04:00:00Z | 2024 | 9 | 2024-09-19T01:17:58Z | 0 | 0 | 0900006486743a45 | ||||
| EPA-R01-OAR-2023-0187-0019 | EPA | None EPA-R01-OAR-2023-0187 | Attachments_Env-A 2300 | Supporting & Related Material | 2024-02-27T05:00:00Z | 2024 | 2 | 2024-02-28T02:50:26Z | 0 | 0 | 0900006486432760 | ||||
| EPA-R01-OAR-2023-0187-0020 | EPA | None EPA-R01-OAR-2023-0187 | Cover letter Env-A 2300 signed | Supporting & Related Material | 2024-02-27T05:00:00Z | 2024 | 2 | 2024-02-28T02:50:38Z | 0 | 0 | 0900006486432763 |
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;