documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NRC-2015-0224" 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 4
agency_id 1
- NRC 10
| 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-2015-0224-0011 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | Advanced Power Reactor 1400 (APR1400) Design Certification | Notice | 2020-01-02T00:00:00Z | 2020 | 1 | 2025-05-21T06:56:42Z | 2019-28287 | 0 | 0 | 0900006484263657 | |||
| NRC-2015-0224-0010 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | Advanced Power Reactor 1400 Design Certification; Confirmation of Effective Date | Rule | 2019-08-16T00:00:00Z | 2019 | 8 | 2025-05-21T07:00:19Z | 2019-17588 | 0 | 0 | 0900006483e5f393 | |||
| NRC-2015-0224-0007 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | APR1400 Standard Design Approval | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:19Z | 0 | 0 | 0900006483cc0dae | ||||
| NRC-2015-0224-0005 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | SRM-M190430A: Affirmation Session - SECY-19-0020 - Direct Final Rule: Advanced Power Reactor 1400 Design Certification (with enclosures) | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc0db0 | ||||
| NRC-2015-0224-0008 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | APR1400 Design Control Document, Revision 3 | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc25c0 | ||||
| NRC-2015-0224-0006 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | KEPCO/KHNP Application for Design Certification of the APR1400 Design | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:19Z | 0 | 0 | 0900006483cc0dad | ||||
| NRC-2015-0224-0003 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | Environmental Assessment by the U.S. Nuclear Regulatory Commission Relating to the Certification of the APR1400 Standard Plant Design | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:19Z | 0 | 0 | 0900006483cc0dac | ||||
| NRC-2015-0224-0004 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | SECY-19-0020, "Direct Final Rule - Advanced Power Reactor 1400 Design Certification" | Supporting & Related Material | 2019-05-23T00:00:00Z | 2019 | 5 | 2025-05-21T07:06:20Z | 0 | 0 | 0900006483cc0daf | ||||
| NRC-2015-0224-0001 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | Advanced Power Reactor 1400 (APR1400) Design Certification; Proposed Rule | Proposed Rule | 2019-05-22T00:00:00Z | 2019 | 5 | 2019-05-22T00:00:00Z | 2019-06-22T03:59:59Z | 2025-05-21T07:06:22Z | 2019-10716 | 0 | 0 | 0900006483cb42ee | |
| NRC-2015-0224-0002 | NRC | Advanced Power Reactor 1400 (APR1400) (KHNP/KEPCO) Design Certification NRC-2015-0224 | Advanced Power Reactor 1400 (APR1400) Design Certification; Direct Final Rule | Rule | 2019-05-22T00:00:00Z | 2019 | 5 | 2019-05-22T00:00:00Z | 2019-06-22T03:59:59Z | 2025-05-21T07:06:22Z | 2019-10715 | 0 | 0 | 0900006483cb4568 |
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;