documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "EPA-HQ-OW-2024-0454" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- EPA 8
| 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-2024-0454-0043 | EPA | None EPA-HQ-OW-2024-0454 | PFAS HHC docket memo extending public comment period BSE CF | Other | Memorandum to Open a Docket | 2025-04-10T04:00:00Z | 2025 | 4 | 2025-04-10T04:00:00Z | 2025-04-10T14:24:39Z | 0 | 0 | 0900006486a8415f | ||
| EPA-HQ-OW-2024-0454-0007 | EPA | None EPA-HQ-OW-2024-0454 | Draft National Recommended Ambient Water Quality Criteria: Protection of Human Health for Perfluorooctanoic Acid, Perfluorooctane Sulfonic Acid, and Perfluorobutane Sulfonic Acid; Correction | Notice | 2025-02-21T05:00:00Z | 2025 | 2 | 2025-02-21T05:00:00Z | 2025-03-01T23:54:51Z | 2025-00710 | 0 | 0 | 09000064868c02e6 | ||
| EPA-HQ-OW-2024-0454-0022 | EPA | None EPA-HQ-OW-2024-0454 | Two Actions Published by the Environmental Protection Agency with Comment Periods that Close February 24, 2025, and March 17, 2025; Comment Period Extensions | Notice | Extension of Comment Period | 2025-02-21T05:00:00Z | 2025 | 2 | 2025-02-21T05:00:00Z | 2025-02-21T20:05:59Z | 2025-02910 | 0 | 0 | 090000648697b456 | |
| EPA-HQ-OW-2024-0454-0003 | EPA | None EPA-HQ-OW-2024-0454 | Draft Human Health Ambient Water Quality Criteria: Perfluorooctane Sulfonic Acid (PFOS) and Related Salts | Supporting & Related Material | Publication - USEPA | 2024-12-26T05:00:00Z | 2024 | 12 | 2024-12-27T01:39:55Z | 0 | 0 | 090000648687887d | |||
| EPA-HQ-OW-2024-0454-0002 | EPA | None EPA-HQ-OW-2024-0454 | Draft Human Health Ambient Water Quality Criteria: Perfluorobutane Sulfonic Acid (PFBS) and Related Salts | Supporting & Related Material | Publication - USEPA | 2024-12-26T05:00:00Z | 2024 | 12 | 2024-12-27T01:40:06Z | 0 | 0 | 090000648687887c | |||
| EPA-HQ-OW-2024-0454-0004 | EPA | None EPA-HQ-OW-2024-0454 | Draft Human Health Ambient Water Quality Criteria: Perfluorooctanoic Acid (PFOA) and Related Salts | Supporting & Related Material | Publication - USEPA | 2024-12-26T05:00:00Z | 2024 | 12 | 2024-12-27T01:39:43Z | 0 | 0 | 09000064868788b2 | |||
| EPA-HQ-OW-2024-0454-0005 | EPA | None EPA-HQ-OW-2024-0454 | Draft National Bioaccumulation Factors for PFOA, PFOS and PFBS | Supporting & Related Material | Data | 2024-12-26T05:00:00Z | 2024 | 12 | 2024-12-27T01:40:18Z | 0 | 0 | 0900006486878b1c | |||
| EPA-HQ-OW-2024-0454-0001 | EPA | None EPA-HQ-OW-2024-0454 | Draft National Recommended Ambient Water Quality Criteria: Protection of Human Health for Perfluorooctanoic Acid, Perfluorooctane Sulfonic Acid, and Perfluorobutane Sulfonic Acid | Notice | 2024-12-26T00:00:00Z | 2024 | 12 | 2024-12-26T00:00:00Z | 2025-04-30T03:59:59Z | 2025-05-13T09:00:43Z | 2024-30637 | 0 | 0 | 090000648688c0fa |
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;