documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NRC-2017-0091" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- NRC 9
| 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-2017-0091-0014 | NRC | Regulatory Analysis Guidelines NRC-2017-0091 | Draft NUREGBR-0058, Revision 5, Appendix L, "Replacement Energy Costs" | Supporting & Related Material | 2022-07-12T00:00:00Z | 2022 | 7 | 2025-05-21T06:37:04Z | 0 | 0 | 09000064851c4345 | ||||
| NRC-2017-0091-0013 | NRC | Regulatory Analysis Guidelines NRC-2017-0091 | Draft NUREGBR/0058, Revision 5, Appendix K, "Monetary Valuation of Nonfatal Cancer Risk for Use in Cost-Benefit Analysis" | Supporting & Related Material | 2022-07-12T00:00:00Z | 2022 | 7 | 2025-05-21T06:37:04Z | 0 | 0 | 09000064851c416b | ||||
| NRC-2017-0091-0012 | NRC | Regulatory Analysis Guidelines NRC-2017-0091 | Regulatory Analysis Guidelines | Notice | 2022-07-06T00:00:00Z | 2022 | 7 | 2022-07-06T00:00:00Z | 2022-09-07T03:59:59Z | 2025-05-21T06:37:05Z | 2022-14287 | 0 | 0 | 09000064851b2766 | |
| NRC-2017-0091-0007 | NRC | Regulatory Analysis Guidelines NRC-2017-0091 | Draft NUREG/BR-0058, Revision 5, Appendix F, “Data Sources” | Supporting & Related Material | 2021-04-19T00:00:00Z | 2021 | 4 | 2025-05-21T06:40:19Z | 0 | 0 | 0900006484aaca5a | ||||
| NRC-2017-0091-0009 | NRC | Regulatory Analysis Guidelines NRC-2017-0091 | Draft NUREG/BR-0058, Revision 5, Appendix G, “Regulatory Analysis Methods and Data for Nuclear Facilities Other Than Power Reactors" | Supporting & Related Material | 2021-04-19T00:00:00Z | 2021 | 4 | 2025-05-21T06:40:19Z | 0 | 0 | 0900006484aaca5b | ||||
| NRC-2017-0091-0008 | NRC | Regulatory Analysis Guidelines NRC-2017-0091 | Draft NUREG/BR-0058, Revision 5, Appendix I, “National Environmental Policy Act Cost-Benefit Analysis" | Supporting & Related Material | 2021-04-19T00:00:00Z | 2021 | 4 | 2025-05-21T06:40:19Z | 0 | 0 | 0900006484aacd2a | ||||
| NRC-2017-0091-0006 | NRC | Regulatory Analysis Guidelines NRC-2017-0091 | Regulatory Analysis Guidelines | Notice | 2021-04-16T00:00:00Z | 2021 | 4 | 2021-04-16T00:00:00Z | 2021-06-16T03:59:59Z | 2025-05-21T06:40:19Z | 2021-07815 | 0 | 0 | 0900006484aa9767 | |
| NRC-2017-0091-0004 | NRC | Regulatory Analysis Guidelines NRC-2017-0091 | NRC Response to NEI's Request for an Extension of the Comment Period | Other | 2017-06-07T00:00:00Z | 2017 | 6 | 2017-06-07T00:00:00Z | 2025-05-21T07:13:36Z | 0 | 0 | 09000064826a4de0 | |||
| NRC-2017-0091-0001 | NRC | Regulatory Analysis Guidelines NRC-2017-0091 | Regulatory Analysis Guidelines; Request for Comment on Draft NUREG | Notice | 2017-04-17T00:00:00Z | 2017 | 4 | 2017-04-17T00:00:00Z | 2017-06-17T03:59:59Z | 2025-05-21T07:13:56Z | 2017-07623 | 0 | 0 | 0900006482558f67 |
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;