documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "NRC" and docket_id = "NRC-2018-0101" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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-2018-0101-0055 | NRC | Turkey Point Nuclear Plant Units 3 and 4 NRC-2018-0101 | Florida Power & Light Company; Turkey Point Nuclear Generating Unit Nos. 3 and 4 | Notice | 2019-12-10T00:00:00Z | 2019 | 12 | 2025-05-21T06:56:47Z | 2019-26500 | 0 | 0 | 09000064841fbe85 | |||
| NRC-2018-0101-0053 | NRC | Turkey Point Nuclear Plant Units 3 and 4 NRC-2018-0101 | Florida Power & Light Company; Turkey Point Nuclear Generating Unit Nos. 3 and 4 | Notice | 2019-10-31T00:00:00Z | 2019 | 10 | 2019-10-31T00:00:00Z | 2025-05-21T06:57:39Z | 2019-23730 | 0 | 0 | 090000648410f26e | ||
| NRC-2018-0101-0034 | NRC | Turkey Point Nuclear Plant Units 3 and 4 NRC-2018-0101 | Florida Power & Light Company; Turkey Point Nuclear Generating Unit Nos. 3 and 4 | Notice | 2019-04-04T00:00:00Z | 2019 | 4 | 2019-04-04T00:00:00Z | 2019-05-21T03:59:59Z | 2025-05-21T07:06:44Z | 2019-06612 | 0 | 0 | 0900006483b63070 | |
| NRC-2018-0101-0030 | NRC | Turkey Point Nuclear Plant Units 3 and 4 NRC-2018-0101 | Comment (30) of Victoria L. Menchaca on Florida Power & Light Subsequent License Renewal Application for Turkey Point Nuclear Generating Station's Reactor Units 3 & 4. | Other | 2018-07-25T04:00:00Z | 2018 | 7 | 2018-07-25T04:00:00Z | 2018-07-25T10:32:15Z | 0 | 0 | 090000648354ff22 | |||
| NRC-2018-0101-0029 | NRC | Turkey Point Nuclear Plant Units 3 and 4 NRC-2018-0101 | Comment (29) of David C. Ritz on Florida Power & light Subsequent License Renewal Application for Turkey Point Nuclear Generating Station's Reactor Units 3 & 4. | Other | 2018-07-25T04:00:00Z | 2018 | 7 | 2018-07-25T04:00:00Z | 2018-07-25T10:25:44Z | 0 | 0 | 090000648354ff21 | |||
| NRC-2018-0101-0031 | NRC | Turkey Point Nuclear Plant Units 3 and 4 NRC-2018-0101 | Comment (31) of Florida Power & Light Subsequent License renew Application for Turkey Point Nuclear Generating Station's Reactor Units 3 & 4. | Other | 2018-07-25T04:00:00Z | 2018 | 7 | 2018-07-25T04:00:00Z | 2018-07-25T10:39:57Z | 0 | 0 | 090000648354ff23 | |||
| NRC-2018-0101-0027 | NRC | Turkey Point Nuclear Plant Units 3 and 4 NRC-2018-0101 | Comment (26) of Patricia Milone on License Renewal for FP''s Turkey Point Nuclear Plant Units 3 and 4. | Other | 2018-07-11T04:00:00Z | 2018 | 7 | 2018-07-11T04:00:00Z | 2018-07-11T12:32:26Z | 0 | 0 | 09000064834cceaa | |||
| NRC-2018-0101-0028 | NRC | Turkey Point Nuclear Plant Units 3 and 4 NRC-2018-0101 | Comment (27) of Sylvia J. Murphy on License Renewal for FPL's Turkey Point Nuclear Plant Units 3 and 4. | Other | 2018-07-11T04:00:00Z | 2018 | 7 | 2018-07-11T04:00:00Z | 2018-07-11T12:31:17Z | 0 | 0 | 09000064834cceab | |||
| NRC-2018-0101-0001 | NRC | Turkey Point Nuclear Plant Units 3 and 4 NRC-2018-0101 | Florida Power & Light Company; Turkey Point Nuclear Plant Units 3 and 4 | Notice | 2018-05-22T00:00:00Z | 2018 | 5 | 2018-05-22T00:00:00Z | 2018-06-22T03:59:59Z | 2025-05-21T07:11:11Z | 2018-10806 | 0 | 0 | 09000064832add51 |
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;