documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "DOE", document_type = "Proposed Rule" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, comment_end_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOE-HQ-2025-0175-0011 | DOE | Implementing Voluntary Agreements Under Section 708 of the Defense Production Act of 1950 (as Amended) DOE-HQ-2025-0175 | Implementing Voluntary Agreements under the Defense Production Act | Proposed Rule | 2025-11-17T05:00:00Z | 2025 | 11 | 2025-11-17T05:00:00Z | 2025-11-25T04:59:59Z | 2025-11-26T00:02:25Z | 2025-20008 | 0 | 0 | 09000064b90850c9 | |
| DOE-HQ-2025-0175-0010 | DOE | Implementing Voluntary Agreements Under Section 708 of the Defense Production Act of 1950 (as Amended) DOE-HQ-2025-0175 | Implementing Voluntary Agreements Under the Defense Production Act | Proposed Rule | 2025-10-15T04:00:00Z | 2025 | 10 | 2025-10-15T04:00:00Z | 2025-10-23T01:14:26Z | 2025-19541 | 0 | 0 | 09000064b901aa4c | ||
| DOE-HQ-2025-0023-0001 | DOE | Rescinding Regulations Related to Nondiscrimination in Federally Assisted Programs or Activities (Nondiscrimination on the Basis of Age) DOE-HQ-2025-0023 | Rescinding Regulations Related to Nondiscrimination in Federally Assisted Programs or Activities (Nondiscrimination on the Basis of Age) | Proposed Rule | 2025-05-16T04:00:00Z | 2025 | 5 | 2025-05-16T04:00:00Z | 2025-07-16T03:59:59Z | 2025-07-15T09:01:23Z | 2025-08595 | 0 | 0 | 09000064b8d62b92 | |
| DOE-HQ-2025-0020-0001 | DOE | Compliance with Floodplain and Wetland Environmental Review Requirements DOE-HQ-2025-0020 | Compliance with Floodplain and Wetland Environmental Review Requirements | Proposed Rule | 2025-05-16T04:00:00Z | 2025 | 5 | 2025-05-16T04:00:00Z | 2025-07-16T03:59:59Z | 2025-07-16T09:00:35Z | 2025-08586 | 0 | 0 | 09000064b8d62bca | |
| DOE-HQ-2025-0022-0001 | DOE | Grant Programs for Schools and Hospitals and Buildings Owned by Units of Local Government and Public Care Institutions DOE-HQ-2025-0022 | Rescinding the Grant Programs for Schools and Hospitals and Buildings Owned by Units of Local Government and Public Care Institutions Regulations | Proposed Rule | 2025-05-16T04:00:00Z | 2025 | 5 | 2025-05-16T04:00:00Z | 2025-06-17T03:59:59Z | 2025-06-07T09:00:16Z | 2025-08590 | 0 | 0 | 09000064b8d62c06 | |
| DOE-HQ-2025-0019-0001 | DOE | Electric Power System Permits and Reports; Administrative Procedures and Sanctions DOE-HQ-2025-0019 | Application for Authorization to Transmit Electric Energy to a Foreign Country | Proposed Rule | 2025-05-16T04:00:00Z | 2025 | 5 | 2025-05-16T04:00:00Z | 2025-07-16T03:59:59Z | 2025-07-16T09:00:33Z | 2025-08555 | 0 | 0 | 09000064b8d62a9d |
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;