documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2023-0152" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0152-0010 | NRC | None NRC-2023-0152 | Dominion Energy South Carolina, Inc.; Virgil C. Summer Nuclear Station, Unit 1; Subsequent License Renewal and Record of Decision | Notice | 2025-07-02T04:00:00Z | 2025 | 7 | 2025-07-02T17:37:35Z | 2025-12351 | 0 | 0 | 09000064b8e4d1a0 | |||
| NRC-2023-0152-0009 | NRC | None NRC-2023-0152 | Dominion Energy South Carolina, Inc.; Virgil C. Summer Nuclear Station, Unit 1; Final Supplemental Environmental Impact Statement | Notice | 2025-05-16T00:00:00Z | 2025 | 5 | 2025-05-21T21:58:48Z | 2025-08802 | 0 | 0 | 09000064b8d62a53 | |||
| NRC-2023-0152-0008 | NRC | None NRC-2023-0152 | Dominion Energy South Carolina, Inc.; Virgil C. Summer Nuclear Station, Unit 1; Draft Supplemental Environmental Impact Statement | Notice | 2025-01-23T00:00:00Z | 2025 | 1 | 2025-01-23T00:00:00Z | 2025-02-12T04:59:59Z | 2025-05-21T06:21:06Z | 2025-01609 | 0 | 0 | 09000064868f2c8d | |
| NRC-2023-0152-0006 | NRC | None NRC-2023-0152 | Dominion Energy South Carolina, Inc.; Virgil C. Summer Nuclear Station, Unit 1; Draft Supplemental Environmental Impact Statement | Notice | 2024-12-06T00:00:00Z | 2024 | 12 | 2024-12-06T00:00:00Z | 2025-01-22T04:59:59Z | 2025-05-21T06:21:44Z | 2024-28583 | 0 | 0 | 090000648684b2d9 | |
| NRC-2023-0152-0003 | NRC | None NRC-2023-0152 | Notice of Intent To Conduct Scoping Process and Prepare Environmental Impact Statement; Dominion Energy South Carolina, Inc.; Virgil C. Summer Nuclear Station, Unit 1 | Notice | 2023-11-03T00:00:00Z | 2023 | 11 | 2023-11-03T00:00:00Z | 2023-12-05T04:59:59Z | 2025-05-21T06:31:14Z | 2023-24329 | 0 | 0 | 09000064861dfca0 | |
| NRC-2023-0152-0002 | NRC | None NRC-2023-0152 | Dominion Energy South Carolina, Inc.; Virgil C. Summer Nuclear Station, Unit No. 1 | Notice | 2023-10-16T00:00:00Z | 2023 | 10 | 2025-05-21T06:31:47Z | 2023-22784 | 0 | 0 | 09000064860eb3ca | |||
| NRC-2023-0152-0001 | NRC | None NRC-2023-0152 | Dominion Energy South Carolina, Inc.; Virgil C. Summer Nuclear Station, Unit No. 1 | Notice | 2023-09-11T00:00:00Z | 2023 | 9 | 2023-09-11T00:00:00Z | 2025-05-21T06:32:15Z | 2023-19472 | 0 | 0 | 0900006485f72453 |
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;