documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NRC-2023-0071" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NRC-2023-0071-0053 | NRC | Regulatory Framework for Fusion Machines (formerly Regulatory Framework for Fusion Systems) NRC-2023-0071 | Unofficial Redline of the NRC's Proposed Rule for the Regulatory Framework for Fusion Machines (ML25198A007) | Supporting & Related Material | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T20:27:09Z | 0 | 0 | 09000064b91e02f3 | ||||
| NRC-2023-0071-0054 | NRC | Regulatory Framework for Fusion Machines (formerly Regulatory Framework for Fusion Systems) NRC-2023-0071 | Draft Report for Comment - NUREG-1556, Volume 22, Consolidated Guidance About Materials Licenses Program: Specific Guidance About Possession Licenses for Fusion Machines (ML24092A377) | Supporting & Related Material | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T20:30:50Z | 0 | 0 | 09000064b91e02a9 | ||||
| NRC-2023-0071-0055 | NRC | Regulatory Framework for Fusion Machines (formerly Regulatory Framework for Fusion Systems) NRC-2023-0071 | Draft Environmental Assessment for the Proposed Rule - Regulatory Framework for Fusion Machines (ML25168A335) | Supporting & Related Material | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T21:59:44Z | 0 | 0 | 09000064b91dfb2b | ||||
| NRC-2023-0071-0057 | NRC | Regulatory Framework for Fusion Machines (formerly Regulatory Framework for Fusion Systems) NRC-2023-0071 | Draft Regulatory Analysis for the Proposed Rule - Regulatory Framework for Fusion Machines (ML25168A339) | Supporting & Related Material | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-27T01:26:14Z | 0 | 0 | 09000064b91e0ac8 | ||||
| NRC-2023-0071-0056 | NRC | Regulatory Framework for Fusion Machines (formerly Regulatory Framework for Fusion Systems) NRC-2023-0071 | Regulatory Framework for Fusion Machines | Proposed Rule | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T05:00:00Z | 2026-05-28T03:59:59Z | 2026-03-06T10:00:24Z | 2026-03865 | 1 | 0 | 09000064b91da69c |
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;