documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NRC-2024-0030" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2024-0030-0008 | NRC | None NRC-2024-0030 | Tennessee Valley Authority; Browns Ferry Nuclear Plant, Units 1, 2, and 3; Subsequent License Renewal and Record of Decision | Notice | 2025-12-16T05:00:00Z | 2025 | 12 | 2025-12-16T20:54:02Z | 2025-22840 | 0 | 0 | 09000064b90da820 | |||
| NRC-2024-0030-0007 | NRC | None NRC-2024-0030 | Tennessee Valley Authority; Browns Ferry Nuclear Plant, Units 1, 2, and 3; Final Environmental Impact Statement | Notice | 2025-08-29T04:00:00Z | 2025 | 8 | 2025-08-29T17:40:51Z | 2025-16595 | 0 | 0 | 09000064b8f25fa8 | |||
| NRC-2024-0030-0006 | NRC | None NRC-2024-0030 | Tennessee Valley Authority; Browns Ferry Nuclear Plant, Units 1, 2, and 3; Exemption | Notice | 2025-07-30T04:00:00Z | 2025 | 7 | 2025-07-30T18:44:12Z | 2025-14425 | 0 | 0 | 09000064b8ebaf45 | |||
| NRC-2024-0030-0005 | NRC | None NRC-2024-0030 | Tennessee Valley Authority; Browns Ferry Nuclear Plant, Units 1, 2, and 3; Draft Supplemental Environmental Impact Statement | Notice | 2025-05-30T00:00:00Z | 2025 | 5 | 2025-05-30T04:00:00Z | 2025-07-15T03:59:59Z | 2025-05-30T17:10:40Z | 2025-09448 | 0 | 0 | 09000064b8dc7cb3 | |
| NRC-2024-0030-0004 | NRC | None NRC-2024-0030 | Tennessee Valley Authority; Browns Ferry Nuclear Plant, Units 1, 2, and 3; Intent To Prepare Environmental Impact Statement | Notice | 2024-10-22T00:00:00Z | 2024 | 10 | 2025-05-21T06:21:54Z | 2024-24394 | 0 | 0 | 09000064867dd7a0 | |||
| NRC-2024-0030-0003 | NRC | None NRC-2024-0030 | Notice of Intent To Conduct Scoping Process and Prepare Environmental Impact Statement; Tennessee Valley Authority; Browns Ferry Nuclear Plant, Units 1, 2, and 3 | Notice | 2024-04-03T00:00:00Z | 2024 | 4 | 2024-04-03T00:00:00Z | 2024-05-04T03:59:59Z | 2025-05-21T06:29:45Z | 2024-06990 | 0 | 0 | 09000064864b7dda | |
| NRC-2024-0030-0002 | NRC | None NRC-2024-0030 | Tennessee Valley Authority; Browns Ferry Nuclear Plant, Units 1, 2, and 3; Subsequent License Renewal Application | Notice | 2024-03-21T00:00:00Z | 2024 | 3 | 2025-05-21T06:29:47Z | 2024-06047 | 0 | 0 | 090000648648baf3 | |||
| NRC-2024-0030-0001 | NRC | None NRC-2024-0030 | Tennessee Valley Authority; Browns Ferry Nuclear Plant, Units 1, 2, and 3; Subsequent License Renewal Application | Notice | 2024-02-08T00:00:00Z | 2024 | 2 | 2025-05-21T06:30:00Z | 2024-02611 | 0 | 0 | 09000064863f304d |
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;