documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where docket_id = "NRC-2019-0062" and document_type = "Other" 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-2019-0062-0300 | NRC | 10 CFR Part 53: Risk-Informed, Technology-Inclusive Regulatory Framework for Advanced Reactors NRC-2019-0062 | Letter dated 07/24/2024 – NEI Input for Addressing Commission Memorandum SRM-SECY-23-0021 – ‘Proposed Rule: Risk-Informed, Technology-Inclusive Regulatory Framework for Advanced Reactors (RIN 3150-AK3) | Other | 2024-08-20T00:00:00Z | 2024 | 8 | 2024-08-20T00:00:00Z | 2025-05-21T06:24:28Z | 0 | 0 | 09000064866582ef | |||
| NRC-2019-0062-0010 | NRC | 10 CFR Part 53: Risk-Informed, Technology-Inclusive Regulatory Framework for Advanced Reactors NRC-2019-0062 | NEI letter dated 10/21/20 - NEI Input on the Rulemaking Plan on Risk-Informed, Technology-Inclusive Regulatory Framework for Advanced Reactors | Other | 2020-11-03T00:00:00Z | 2020 | 11 | 2020-11-03T00:00:00Z | 2025-05-21T06:42:03Z | 0 | 0 | 0900006484948c19 | |||
| NRC-2019-0062-0009 | NRC | 10 CFR Part 53: Risk-Informed, Technology-Inclusive Regulatory Framework for Advanced Reactors NRC-2019-0062 | E-mail from Mike Keller (Hybrid Power) regarding September 22, 2020, public meeting on Part 53 | Other | 2020-11-03T00:00:00Z | 2020 | 11 | 2020-11-03T00:00:00Z | 2025-05-21T06:42:03Z | 0 | 0 | 0900006484947eab |
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;