documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2017-0029" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- NRC 7
| 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-0029-0017 | NRC | Design Certification for the NuScale Small Modular Reactor Design Certification NRC-2017-0029 | NuScale Small Modular Reactor Design Certification | Rule | 2023-02-03T00:00:00Z | 2023 | 2 | 2023-02-03T00:00:00Z | 2025-05-21T06:36:02Z | C1-2023-00729 | 0 | 0 | 0900006485630a0b | ||
| NRC-2017-0029-0016 | NRC | Design Certification for the NuScale Small Modular Reactor Design Certification NRC-2017-0029 | NuScale Small Modular Reactor Design Certification | Rule | 2023-01-19T00:00:00Z | 2023 | 1 | 2025-05-21T06:36:14Z | 2023-00729 | 0 | 0 | 09000064855f846d | |||
| NRC-2017-0029-0012 | NRC | Design Certification for the NuScale Small Modular Reactor Design Certification NRC-2017-0029 | Request for Extension of Public Comment Period | Supporting & Related Material | 2021-10-20T00:00:00Z | 2021 | 10 | 2025-05-21T06:39:21Z | 0 | 0 | 0900006484dd0853 | ||||
| NRC-2017-0029-0007 | NRC | Design Certification for the NuScale Small Modular Reactor Design Certification NRC-2017-0029 | NuScale Small Modular Reactor Design Certification | Proposed Rule | 2021-08-24T00:00:00Z | 2021 | 8 | 2021-08-24T00:00:00Z | 2021-10-15T03:59:59Z | 2025-05-21T06:39:46Z | 2021-18071 | 0 | 0 | 0900006484c9fd97 | |
| NRC-2017-0029-0006 | NRC | Design Certification for the NuScale Small Modular Reactor Design Certification NRC-2017-0029 | Letter from James Joosten Requesting Access to Safeguards and Proprietary Information | Supporting & Related Material | 2021-07-30T00:00:00Z | 2021 | 7 | 2025-05-21T06:39:58Z | 0 | 0 | 0900006484c1b867 | ||||
| NRC-2017-0029-0005 | NRC | Design Certification for the NuScale Small Modular Reactor Design Certification NRC-2017-0029 | Request for Extension of Comment Period for PR-52 - NuScale Small Modular Reactor Design Certification Submitted by Sarah Fields of Uranium Watch and Tim Judson of Nuclear Information and Resource Service.) | Supporting & Related Material | 2021-07-28T00:00:00Z | 2021 | 7 | 2025-05-21T06:39:59Z | 0 | 0 | 0900006484c135a5 | ||||
| NRC-2017-0029-0001 | NRC | Design Certification for the NuScale Small Modular Reactor Design Certification NRC-2017-0029 | NuScale Small Modular Reactor Design Certification | Proposed Rule | 2021-07-01T00:00:00Z | 2021 | 7 | 2021-07-01T00:00:00Z | 2021-10-15T03:59:59Z | 2025-05-21T06:40:05Z | 2021-13940 | 0 | 0 | 0900006484bc6cdc |
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;