documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NRC-2008-0616" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0616-0010 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc., River Bend Station, Unit 3; Withdrawal of Application for Combined License | Notice | 2016-06-21T00:00:00Z | 2016 | 6 | 2025-05-21T07:16:31Z | 2016-14630 | 0 | 0 | 0900006482053940 | |||
| NRC-2008-0616-0009 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc.; Combined License Application for River Bend Station Unit 3; Exemption | Notice | 2014-12-30T00:00:00Z | 2014 | 12 | 2025-05-21T07:30:21Z | 2014-30585 | 0 | 0 | 090000648199993c | |||
| NRC-2008-0616-0008 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc.; Combined License Application for River Bend Station Unit 3; Issuance of Exemption | Notice | 2014-12-16T00:00:00Z | 2014 | 12 | 2025-05-21T07:30:24Z | 2014-29124 | 0 | 0 | 090000648197ba2b | |||
| NRC-2008-0616-0007 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc. Combined License Application for River Bend Unit 3; Issuance of Exemption | Notice | 2014-12-11T00:00:00Z | 2014 | 12 | 2025-05-21T07:30:25Z | 2014-29126 | 0 | 0 | 090000648196d9ce | |||
| NRC-2008-0616-0006 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc.; Combined License Application for River Bend Station Unit 3; Exemption from the Requirements to Revise a Combined License Application to Comply with Enhancements to Emergency Preparedness Rules | Notice | 2013-12-11T00:00:00Z | 2013 | 12 | 2025-05-21T08:42:29Z | 2013-29559 | 0 | 0 | 09000064814b7671 | |||
| NRC-2008-0616-0005 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc.; Combined License Application for River Bend Station, Exemption from the Requirements to Update a Final Safety Analysis Report Submitted as Part of a Combined License Application | Notice | 2013-12-11T00:00:00Z | 2013 | 12 | 2025-05-21T08:42:29Z | 2013-29558 | 0 | 0 | 09000064814b763b | |||
| NRC-2008-0616-0004 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc.; River Bend Station Unit 3 Combined License Application; Notice of Cancellation of Enviormental Scoping Process and Public Scoping Meeting | Notice | 2009-01-28T00:00:00Z | 2009 | 1 | 2025-05-21T09:05:32Z | E9-01779 | 0 | 0 | 0900006480834ba6 | |||
| NRC-2008-0616-0003 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc.; River Bend Station Unit 3 Combined License Application; Notice of Intent to Prepare an Environmental Impact Statement and Conduct Scoping Process | Notice | 2009-01-05T00:00:00Z | 2009 | 1 | 2009-01-05T00:00:00Z | 2009-03-07T04:59:59Z | 2025-05-21T09:05:36Z | 0 | 0 | 090000648080f131 | ||
| NRC-2008-0616-0002 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc., et al.: Acceptance for Docketing of an Application for Combined License (COL) for River Bend (Unit 3) | Notice | 2008-12-10T00:00:00Z | 2008 | 12 | 2025-05-21T09:05:41Z | E8-29185 | 0 | 0 | 09000064807d5740 | |||
| NRC-2008-0616-0001 | NRC | Receipt and Availability of Application: Combined License; Entergy Operations, Inc. NRC-2008-0616 | Entergy Operations, Inc.; Notice of Receipt and Availability of Application for a Combined License | Notice | 2008-11-19T00:00:00Z | 2008 | 11 | 2025-05-21T09:05:56Z | 0 | 0 | 09000064807b1e1e |
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;