documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NRC-2008-0441" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NRC-2008-0441-0081 | NRC | Combined License Applications: Virgil C. Summer Nuclear Station Units 2 and 3; South Carolina Electric and Gas Company and South Carolina Public Service Authority NRC-2008-0441 | Virgil C. Summer Nuclear Station, Units 2 and 3; South Carolina Electric and Gas Company; Issuance of Exemption and Combined License Amendment | Notice | 2015-12-08T00:00:00Z | 2015 | 12 | 2025-05-21T07:21:29Z | 2015-30879 | 0 | 0 | 0900006481d8cb02 | |||
| NRC-2008-0441-0080 | NRC | Combined License Applications: Virgil C. Summer Nuclear Station Units 2 and 3; South Carolina Electric and Gas Company and South Carolina Public Service Authority NRC-2008-0441 | Virgil C. Summer Nuclear Station, Units 2 and 3; South Carolina Electric and Gas Company; Issuance of Exemption and Combined License Amendment | Notice | 2015-09-15T00:00:00Z | 2015 | 9 | 2025-05-21T07:22:19Z | 2015-23086 | 0 | 0 | 0900006481c6f3f8 | |||
| NRC-2008-0441-0079 | NRC | Combined License Applications: Virgil C. Summer Nuclear Station Units 2 and 3; South Carolina Electric and Gas Company and South Carolina Public Service Authority NRC-2008-0441 | Virgil C. Summer Nuclear Station, Units 2 and 3; License Amendment Application | Notice | 2015-09-03T00:00:00Z | 2015 | 9 | 2015-09-03T00:00:00Z | 2015-10-06T03:59:59Z | 2025-05-21T07:22:24Z | 2015-21817 | 0 | 0 | 0900006481c53316 | |
| NRC-2008-0441-0076 | NRC | Combined License Applications: Virgil C. Summer Nuclear Station Units 2 and 3; South Carolina Electric and Gas Company and South Carolina Public Service Authority NRC-2008-0441 | Virgil C. Summer Nuclear Station, Units 2 and 3; Correction | Notice | 2015-07-20T00:00:00Z | 2015 | 7 | 2015-07-20T00:00:00Z | 2025-05-21T07:24:28Z | 2015-17677 | 0 | 0 | 0900006481b9231f | ||
| NRC-2008-0441-0075 | NRC | Combined License Applications: Virgil C. Summer Nuclear Station Units 2 and 3; South Carolina Electric and Gas Company and South Carolina Public Service Authority NRC-2008-0441 | Virgil C. Summer Nuclear Station, Units 2 and 3; License Amendment Application | Notice | 2015-07-09T00:00:00Z | 2015 | 7 | 2015-07-09T00:00:00Z | 2015-08-11T03:59:59Z | 2025-05-21T07:25:03Z | 2015-16797 | 0 | 0 | 0900006481b7559b | |
| NRC-2008-0441-0073 | NRC | Combined License Applications: Virgil C. Summer Nuclear Station Units 2 and 3; South Carolina Electric and Gas Company and South Carolina Public Service Authority NRC-2008-0441 | Virgil C. Summer Nuclear Station, Units 2 and 3; South Carolina Electric and Gas Company; Issuance of Exemption and Combined License Amendment | Notice | 2015-06-10T00:00:00Z | 2015 | 6 | 2025-05-21T07:28:39Z | 2015-14206 | 0 | 0 | 0900006481b29121 | |||
| NRC-2008-0441-0072 | NRC | Combined License Applications: Virgil C. Summer Nuclear Station Units 2 and 3; South Carolina Electric and Gas Company and South Carolina Public Service Authority NRC-2008-0441 | Virgil C. Summer Nuclear Station, Units 2 and 3; License Amendment Application | Notice | 2015-06-08T00:00:00Z | 2015 | 6 | 2015-06-08T00:00:00Z | 2015-07-09T03:59:59Z | 2025-05-21T07:28:39Z | 2015-13940 | 0 | 0 | 0900006481b211b0 | |
| NRC-2008-0441-0071 | NRC | Combined License Applications: Virgil C. Summer Nuclear Station Units 2 and 3; South Carolina Electric and Gas Company and South Carolina Public Service Authority NRC-2008-0441 | Virgil C. Summer Nuclear Station, Units 2 and 3; South Carolina Electric & Gas Company; Tier 1 Editorial and Consistency Changes; Issuance of Exemption and Combined License Amendment | Notice | 2015-04-14T00:00:00Z | 2015 | 4 | 2025-05-21T07:29:44Z | 2015-08563 | 0 | 0 | 0900006481aa3c6e |
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;