documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "EPA-HQ-OW-2025-0157" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_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-OW-2025-0157-0326 | EPA | None EPA-HQ-OW-2025-0157 | Texas Underground Injection Control (UIC) Program; Class VI Primacy Application | Rule | Final Rule | 2025-11-14T05:00:00Z | 2025 | 11 | 2025-11-14T20:26:29Z | 2025-19898 | 0 | 0 | 09000064b908352d | ||
| EPA-HQ-OW-2025-0157-0320 | EPA | None EPA-HQ-OW-2025-0157 | Texas UIC Class VI Primacy EPA Response to Rule Public Comments | Supporting & Related Material | Comment Response | 2025-11-12T05:00:00Z | 2025 | 11 | 2025-11-13T00:37:58Z | 0 | 0 | 09000064b9057f0c | |||
| EPA-HQ-OW-2025-0157-0321 | EPA | None EPA-HQ-OW-2025-0157 | EPA-Class-II-Response-EarthJustice-7-18-25 Final | Supporting & Related Material | Letter | 2025-11-12T05:00:00Z | 2025 | 11 | 2025-11-13T00:37:59Z | 0 | 0 | 09000064b9058941 | |||
| EPA-HQ-OW-2025-0157-0323 | EPA | None EPA-HQ-OW-2025-0157 | EPA Annual Narrative 2021 FINAL | Supporting & Related Material | Letter | 2025-11-12T05:00:00Z | 2025 | 11 | 2025-11-13T00:37:59Z | 0 | 0 | 09000064b9058943 | |||
| EPA-HQ-OW-2025-0157-0324 | EPA | None EPA-HQ-OW-2025-0157 | RRC Annual Narrative FY2023 Final | Supporting & Related Material | Letter | 2025-11-12T05:00:00Z | 2025 | 11 | 2025-11-13T00:38:00Z | 0 | 0 | 09000064b9058944 | |||
| EPA-HQ-OW-2025-0157-0325 | EPA | None EPA-HQ-OW-2025-0157 | RRC Annual Narrative FY2024 Final | Supporting & Related Material | Letter | 2025-11-12T05:00:00Z | 2025 | 11 | 2025-11-13T00:38:00Z | 0 | 0 | 09000064b9058945 | |||
| EPA-HQ-OW-2025-0157-0322 | EPA | None EPA-HQ-OW-2025-0157 | RRC annual narrative FY 2020 | Supporting & Related Material | Report | 2025-11-12T05:00:00Z | 2025 | 11 | 2025-11-13T00:37:59Z | 0 | 0 | 09000064b9058942 | |||
| EPA-HQ-OW-2025-0157-0319 | EPA | None EPA-HQ-OW-2025-0157 | Public Hearing Transcript Proposed Rule TX | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2025-09-02T04:00:00Z | 2025 | 9 | 2025-09-02T17:35:26Z | 0 | 0 | 09000064b8f0c15d | |||
| EPA-HQ-OW-2025-0157-0002 | EPA | None EPA-HQ-OW-2025-0157 | TX Class VI Application | Supporting & Related Material | Application | 2025-06-17T04:00:00Z | 2025 | 6 | 2025-06-17T16:59:03Z | 0 | 0 | 09000064b8de692c | |||
| EPA-HQ-OW-2025-0157-0001 | EPA | None EPA-HQ-OW-2025-0157 | Texas Underground Injection Control Program: Class VI Primacy | Proposed Rule | 2025-06-17T04:00:00Z | 2025 | 6 | 2025-06-17T04:00:00Z | 2025-08-02T03:59:59Z | 2025-08-11T09:00:18Z | 2025-10957 | 0 | 0 | 09000064b8e16101 |
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;