documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NRC-2013-0037" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2013-0037-0034 | NRC | Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant NRC-2013-0037 | License Renewal for Sequoyah Nuclear Plant, Units 1 and 2; Issuance of License Renewal and Record of Decision | Notice | 2015-10-02T00:00:00Z | 2015 | 10 | 2025-05-21T07:22:15Z | 2015-25128 | 0 | 0 | 0900006481caaa43 | |||
| NRC-2013-0037-0032 | NRC | Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant NRC-2013-0037 | Sequoyah Nuclear Plant, Units 1 & 2; Issuance of Supplemental Environmental Impact Statement | Notice | 2015-03-27T00:00:00Z | 2015 | 3 | 2025-05-21T07:29:48Z | 2015-06961 | 0 | 0 | 0900006481a6b857 | |||
| NRC-2013-0037-0031 | NRC | Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant NRC-2013-0037 | Tennessee Valley Authority, Sequoyah Nuclear Plant, Units 1 and 2; Notice of Atomic Safety and Licensing Board Reconstitution | Notice | 2015-01-23T00:00:00Z | 2015 | 1 | 2025-05-21T07:30:16Z | 2015-01179 | 0 | 0 | 09000064819db788 | |||
| NRC-2013-0037-0024 | NRC | Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant NRC-2013-0037 | Draft NUREG-1437, Supplement 53 - Generic Environmental Impact Statement for License Renewal of Nuclear Plants Regarding Sequoyah Nuclear Plant Units 1 and 2 | Other | 2014-08-11T00:00:00Z | 2014 | 8 | 2014-08-11T00:00:00Z | 2025-05-21T07:31:10Z | 0 | 0 | 09000064818178c5 | |||
| NRC-2013-0037-0023 | NRC | Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant NRC-2013-0037 | License Renewal Application for Sequoyah Nuclear Plant, Units 1 and 2; Draft Supplemental Generic Environmental Impact Statement | Notice | 2014-08-11T00:00:00Z | 2014 | 8 | 2014-08-11T00:00:00Z | 2014-09-30T03:59:59Z | 2025-05-21T07:31:10Z | 2014-18966 | 0 | 0 | 09000064818178e0 | |
| NRC-2013-0037-0012 | NRC | Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant NRC-2013-0037 | Tennessee Valley Authority; Establishment of Atomic Safety and Licensing Board | Notice | 2013-05-16T00:00:00Z | 2013 | 5 | 2025-05-21T08:45:54Z | 2013-11712 | 0 | 0 | 09000064812e74fb | |||
| NRC-2013-0037-0003 | NRC | Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant NRC-2013-0037 | License Renewal Application for Sequoyah Nuclear Plant, Units 1 and 2, Tennessee Valley Authority | Notice | 2013-03-08T00:00:00Z | 2013 | 3 | 2013-03-08T00:00:00Z | 2013-05-04T03:59:59Z | 2025-05-21T08:46:09Z | 2013-05491 | 0 | 0 | 090000648122075c | |
| NRC-2013-0037-0002 | NRC | Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant NRC-2013-0037 | Tennessee Valley Authority; Notice of Acceptance for Docketing of Application and Notice of Opportunity for Hearing Regarding Renewal of Sequoyah Nuclear Plant, Units 1 and 2 Facility Operating License Nos. DPR-77 and DPR-79 for an Additional 20-Year Period | Notice | 2013-03-05T00:00:00Z | 2013 | 3 | 2025-05-21T08:46:10Z | 2013-05020 | 0 | 0 | 09000064812182b7 | |||
| NRC-2013-0037-0001 | NRC | Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant NRC-2013-0037 | Tennessee Valley Authority; Notice of Receipt and Availability of Application for Renewal of Sequoyah Nuclear Plant, Units 1 and 2 Facility Operating License Nos. DPR-77 and DPR-79 for an Additional 20-Year Period | Notice | 2013-02-22T00:00:00Z | 2013 | 2 | 2025-05-21T08:46:12Z | 2013-04113 | 0 | 0 | 09000064812035b1 |
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;