documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NRC-2015-0213" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, withdrawn, posted_date (date), last_modified (date)
| 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-0213-0034 | NRC | Defining "Important to Safety" NRC-2015-0213 | October 2021 Status Update to Petitioner | Supporting & Related Material | 2021-11-30T00:00:00Z | 2021 | 11 | 2025-05-21T06:39:06Z | 0 | 1 | 0900006484e8dba3 | ||||
| NRC-2015-0213-0033 | NRC | Defining "Important to Safety" NRC-2015-0213 | October 2021 Status Update to Petitioner | Supporting & Related Material | 2021-10-27T00:00:00Z | 2021 | 10 | 2025-05-21T06:39:18Z | 0 | 0 | 0900006484dfb133 | ||||
| NRC-2015-0213-0028 | NRC | Defining "Important to Safety" NRC-2015-0213 | Enclosure to Email Response to 6 month status update, document titled "Generic Nuclear Power Plant Siting Guidance, Revision 1, August 2020" | Supporting & Related Material | 2021-05-06T00:00:00Z | 2021 | 5 | 2025-05-21T06:40:15Z | 0 | 0 | 0900006484ad556a | ||||
| NRC-2015-0213-0029 | NRC | Defining "Important to Safety" NRC-2015-0213 | Enclosure to email response to 6 month status update, document titled "Generic Procedure for Generating LARs Including 10 CFR 50.92 SHC Determinaitons, Revision 3, December 2018" | Supporting & Related Material | 2021-05-06T00:00:00Z | 2021 | 5 | 2025-05-21T06:40:15Z | 0 | 0 | 0900006484ad55cd | ||||
| NRC-2015-0213-0031 | NRC | Defining "Important to Safety" NRC-2015-0213 | Enclosure to email response to 6 month status update, document titled "Proto-Typical Safety Analysis Report Writers Guide Revision 1 March 2021 | Supporting & Related Material | 2021-05-06T00:00:00Z | 2021 | 5 | 2025-05-21T06:40:15Z | 0 | 0 | 0900006484ad55cf | ||||
| NRC-2015-0213-0032 | NRC | Defining "Important to Safety" NRC-2015-0213 | Enclosure to Email Response to 6 month status update, document titled "Kurt Schaefer Resume" | Supporting & Related Material | 2021-05-06T00:00:00Z | 2021 | 5 | 2025-05-21T06:40:15Z | 0 | 0 | 0900006484ad55d1 | ||||
| NRC-2015-0213-0030 | NRC | Defining "Important to Safety" NRC-2015-0213 | Response to 6 month status update - Email from K. Schaefer to M. Barillas | Supporting & Related Material | 2021-05-06T00:00:00Z | 2021 | 5 | 2025-05-21T06:40:15Z | 0 | 0 | 0900006484ad55d2 | ||||
| NRC-2015-0213-0027 | NRC | Defining "Important to Safety" NRC-2015-0213 | 04-05-2021 2021 Status update to petitoner - PRM 50-112 | Supporting & Related Material | 2021-04-12T00:00:00Z | 2021 | 4 | 2025-05-21T06:40:20Z | 0 | 0 | 0900006484aa3b73 |
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;