documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NRC-2014-0268" 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)
document_type 2
agency_id 1
- NRC 8
| 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-2014-0268-0015 | NRC | LaSalle County Station, Units 1 and 2 NRC-2014-0268 | Exelon Generation Company, LLC; LaSalle County Station, Units 1 and 2; Issuance of License Renewal and Record of Decision | Notice | 2016-10-27T00:00:00Z | 2016 | 10 | 2025-05-21T07:15:38Z | 2016-25988 | 0 | 0 | 0900006482356f96 | |||
| NRC-2014-0268-0014 | NRC | LaSalle County Station, Units 1 and 2 NRC-2014-0268 | Exelon Generation Company, LLC; LaSalle County Station, Units 1 and 2; License Renewal; Issuance of Supplemental Environmental Impact Statement | Notice | 2016-09-01T00:00:00Z | 2016 | 9 | 2025-05-21T07:16:08Z | 2016-21055 | 0 | 0 | 09000064821bccfa | |||
| NRC-2014-0268-0009 | NRC | LaSalle County Station, Units 1 and 2 NRC-2014-0268 | Transcript of March 22, 2016 Public Meeting on LaSalle Draft Supplemental Environmental Impact Statement | Supporting & Related Material | 2016-04-07T00:00:00Z | 2016 | 4 | 2025-05-21T07:18:30Z | 0 | 0 | 0900006481f4d06d | ||||
| NRC-2014-0268-0006 | NRC | LaSalle County Station, Units 1 and 2 NRC-2014-0268 | License Renewal Draft Supplemental Environmental Impact Statement for LaSalle County Station, Units 1 and 2; Request for Comment | Notice | 2016-02-11T00:00:00Z | 2016 | 2 | 2016-02-11T00:00:00Z | 2016-04-05T03:59:59Z | 2025-05-21T07:20:35Z | 2016-02785 | 0 | 0 | 0900006481e6512a | |
| NRC-2014-0268-0007 | NRC | LaSalle County Station, Units 1 and 2 NRC-2014-0268 | Generic Environmental Impact Statement for License Renewal of Nuclear Plants (NUREG-1437 Supplement 57 Regarding LaSalle County Station, Units 1 and 2) | Supporting & Related Material | 2016-02-11T00:00:00Z | 2016 | 2 | 2025-05-21T07:20:35Z | 0 | 0 | 0900006481e6533f | ||||
| NRC-2014-0268-0002 | NRC | LaSalle County Station, Units 1 and 2 NRC-2014-0268 | LaSalle County Station, Units 1 and 2; Notice of Intent to Prepare an Environmental Impact Statement | Notice | 2015-02-03T00:00:00Z | 2015 | 2 | 2015-02-03T00:00:00Z | 2015-04-07T03:59:59Z | 2025-05-21T07:30:14Z | 2015-02080 | 0 | 0 | 09000064819efe0b | |
| NRC-2014-0268-0003 | NRC | LaSalle County Station, Units 1 and 2 NRC-2014-0268 | Exelon Generation Company, LLC; LaSalle County Station, Units 1 and 2; License Renewal Application | Notice | 2015-02-03T00:00:00Z | 2015 | 2 | 2025-05-21T07:30:14Z | 2015-01807 | 0 | 0 | 09000064819efe0e | |||
| NRC-2014-0268-0001 | NRC | LaSalle County Station, Units 1 and 2 NRC-2014-0268 | LaSalle County Station, Units 1 and 2; Receipt of License Renewal Application | Notice | 2014-12-18T00:00:00Z | 2014 | 12 | 2025-05-21T07:30:23Z | 2014-29667 | 0 | 0 | 090000648198230a |
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;