documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NRC-2008-0252" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NRC-2008-0252-0199 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company, Inc.; Vogtle Electric Generating Plant Units 3 and 4 | Notice | 2021-12-28T00:00:00Z | 2021 | 12 | 2025-05-21T06:38:59Z | 2021-28129 | 0 | 0 | 0900006484efe0b2 | |||
| NRC-2008-0252-0197 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company, Inc., Vogtle Electric Generating Plant Units 3 and 4 | Notice | 2021-11-29T00:00:00Z | 2021 | 11 | 2025-05-21T06:39:07Z | 2021-25952 | 0 | 0 | 0900006484e86943 | |||
| NRC-2008-0252-0198 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company, Inc.; Vogtle Electric Generating Plant Units 3 and 4 | Notice | 2021-11-29T00:00:00Z | 2021 | 11 | 2025-05-21T06:39:07Z | 2021-25876 | 0 | 0 | 0900006484e86a51 | |||
| NRC-2008-0252-0196 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company, Inc., Vogtle Electric Generating Plant, Units 3 and 4; Issuance of Amendment and Exemption Changes to Tier 1 Information Regarding Invessel Components | Notice | 2021-11-03T00:00:00Z | 2021 | 11 | 2025-05-21T06:39:16Z | 2021-23942 | 0 | 0 | 0900006484e0fb20 | |||
| NRC-2008-0252-0195 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company, Inc; Vogtle Electric Generating Plant, Units 3 and 4; Inspections, Tests, Analyses, and Acceptance Criteria | Notice | 2021-09-08T00:00:00Z | 2021 | 9 | 2025-05-21T06:39:39Z | 2021-19306 | 0 | 0 | 0900006484d5edcb | |||
| NRC-2008-0252-0194 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company Inc; Vogtle Electric Generating Plant, Units 3 and 4 | Notice | 2021-09-03T00:00:00Z | 2021 | 9 | 2021-09-03T00:00:00Z | 2021-10-05T03:59:59Z | 2025-05-21T06:39:40Z | 2021-19133 | 0 | 0 | 0900006484d4a03e | |
| NRC-2008-0252-0193 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company Inc; Vogtle Electric Generating Plant Unit 4 | Notice | 2021-05-14T00:00:00Z | 2021 | 5 | 2025-05-21T06:40:14Z | 2021-10254 | 0 | 0 | 0900006484aff844 | |||
| NRC-2008-0252-0192 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company, Inc; Vogtle Electric Generating Plant, Units 3 and 4; Inspections, Tests, Analyses, and Acceptance Criteria | Notice | 2021-05-04T00:00:00Z | 2021 | 5 | 2025-05-21T06:40:16Z | 2021-09312 | 0 | 0 | 0900006484aca7c0 | |||
| NRC-2008-0252-0191 | NRC | Receipt and Availability of Application for a Combined License; Southern Nuclear Operating Company NRC-2008-0252 | Southern Nuclear Operating Company, Inc.; Vogtle Electric Generating Plant, Unit 3; Unit 3 Auxiliary Building Wall 11 Seismic Gap Requirements | Notice | 2021-01-12T00:00:00Z | 2021 | 1 | 2025-05-21T06:41:08Z | 2021-00410 | 0 | 0 | 09000064849ef83c |
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;