documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NRC-2017-0227" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, 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-2017-0227-0030 | NRC | Alternative Physical Security Requirements for Advanced Reactors NRC-2017-0227 | 10/19/2021 - NRC Presentation for Public Meeting RE: Rulemaking: Alternative Physical Security Requirements for Advanced Reactors | Supporting & Related Material | 2021-10-19T00:00:00Z | 2021 | 10 | 2025-05-21T06:39:22Z | 0 | 0 | 0900006484dcb02c | ||||
| NRC-2017-0227-0029 | NRC | Alternative Physical Security Requirements for Advanced Reactors NRC-2017-0227 | Email from David Young to Dennis Andrucat - NEI 20-05 Draft D -Methodological Approach And Considerations for a Tech Analysis to Demonstrate Compliance with the Eligibility/criteria of 73.55(a)(7) | Supporting & Related Material | 2021-05-18T00:00:00Z | 2021 | 5 | 2025-05-21T06:40:13Z | 0 | 0 | 0900006484b14075 | ||||
| NRC-2017-0227-0028 | NRC | Alternative Physical Security Requirements for Advanced Reactors NRC-2017-0227 | Email Response from D. Andrukat to D. Young (NEI) Question on the term "unmitigated" as used in proposed eligibility criterion 10 CFR 73.55(a)(7)(i)(A) | Supporting & Related Material | 2021-04-19T00:00:00Z | 2021 | 4 | 2025-05-21T06:40:19Z | 0 | 0 | 0900006484aaca60 | ||||
| NRC-2017-0227-0025 | NRC | Alternative Physical Security Requirements for Advanced Reactors NRC-2017-0227 | Letter to NEI from NRC Transmitting Comments and Markup on "Methodolical Approach and Considerations for a Technical Analysis to Demonstrate Compliance with the Performance Criteria of 10 CFR 73.55(a)(7) | Supporting & Related Material | 2021-03-09T00:00:00Z | 2021 | 3 | 2025-05-21T06:40:36Z | 0 | 0 | 0900006484a642cd | ||||
| NRC-2017-0227-0026 | NRC | Alternative Physical Security Requirements for Advanced Reactors NRC-2017-0227 | Comments on "Methodological Approach and Considerations for a Technical Analysis to Demonstrate Compliance with the Performance Criter of 10 CFR 73.55(a)(7) | Supporting & Related Material | 2021-03-09T00:00:00Z | 2021 | 3 | 2025-05-21T06:40:36Z | 0 | 0 | 0900006484a642ce | ||||
| NRC-2017-0227-0027 | NRC | Alternative Physical Security Requirements for Advanced Reactors NRC-2017-0227 | NRC Markup of NEI-20-05 Draft B Comments on "Methodological Approachand Considerations for a Technical Analysis to Demonstrate Compliance with the Performance Criteria of 10 CFR 73.55(a)(7)" | Supporting & Related Material | 2021-03-09T00:00:00Z | 2021 | 3 | 2025-05-21T06:40:36Z | 0 | 0 | 0900006484a64625 |
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;