documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "NRC-2017-0081" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- NRC 11
| 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-0081-0027 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | Greater-than-Class-C and Transuranic Waste; Extension of Comment Period | Proposed Rule | 2019-09-13T00:00:00Z | 2019 | 9 | 2019-09-13T00:00:00Z | 2019-11-20T04:59:59Z | 2025-05-21T07:00:01Z | 2019-19645 | 0 | 0 | 0900006483f54522 | |
| NRC-2017-0081-0022 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | Transcript of August 27, 2019, Public Meeting on Draft Regulatory Basis for the Disposal of Greater-than-Class C (GTCC) and Transuranic Waste | Supporting & Related Material | 2019-09-03T00:00:00Z | 2019 | 9 | 2025-05-21T07:00:07Z | 0 | 0 | 0900006483ee56fc | ||||
| NRC-2017-0081-0021 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | Transcript of August 22, 2019, Public Webinar to Discuss the Draft Regulatory Basis for the Disposal of GTCC and Transuranic Waste | Supporting & Related Material | 2019-08-29T00:00:00Z | 2019 | 8 | 2025-05-21T07:00:09Z | 0 | 0 | 0900006483ed8558 | ||||
| NRC-2017-0081-0020 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | Hazard Assessment of Greater-than-Class C Waste Streams: Intruder and Accident Scenarios | Supporting & Related Material | 2019-08-21T00:00:00Z | 2019 | 8 | 2025-05-21T07:00:18Z | 0 | 0 | 0900006483e87f9e | ||||
| NRC-2017-0081-0019 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | Slides for August 22 and 27, 2019 Greater-than-Class C Public Meetings | Supporting & Related Material | 2019-08-21T00:00:00Z | 2019 | 8 | 2025-05-21T07:00:18Z | 0 | 0 | 0900006483e868d0 | ||||
| NRC-2017-0081-0016 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | August 22, 2019 Public Meeting Announcement | Supporting & Related Material | 2019-08-15T00:00:00Z | 2019 | 8 | 2025-05-21T07:00:20Z | 0 | 0 | 0900006483e505bd | ||||
| NRC-2017-0081-0017 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | August 27, 2019 Public Meeting Announcement | Supporting & Related Material | 2019-08-15T00:00:00Z | 2019 | 8 | 2025-05-21T07:00:20Z | 0 | 0 | 0900006483e51150 | ||||
| NRC-2017-0081-0018 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | Slides for August 22 and 27, 2019 Greater-than-Class C Public Meetings | Supporting & Related Material | 2019-08-15T00:00:00Z | 2019 | 8 | 2025-05-21T07:00:20Z | 0 | 1 | 0900006483e51153 | ||||
| NRC-2017-0081-0015 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | Disposal of Greater-than-Class-C (GTCC) and Transuranic Waste; Draft Regulatory Basis | Supporting & Related Material | 2019-07-22T00:00:00Z | 2019 | 7 | 2025-05-21T07:00:23Z | 0 | 0 | 0900006483da6515 | ||||
| NRC-2017-0081-0014 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | Greater-than-Class-C and Transuranic Waste; Draft Regulatory Basis | Proposed Rule | 2019-07-22T00:00:00Z | 2019 | 7 | 2019-07-22T00:00:00Z | 2019-09-21T03:59:59Z | 2025-05-21T07:00:24Z | 2019-15434 | 0 | 0 | 0900006483da5ca2 | |
| NRC-2017-0081-0001 | NRC | Greater-than-Class-C and Transuranic Waste NRC-2017-0081 | Disposal of Greater-than-Class C and Transuranic Waste; Public Meeting | Proposed Rule | 2018-02-14T00:00:00Z | 2018 | 2 | 2018-02-14T00:00:00Z | 2018-04-17T03:59:59Z | 2025-05-21T07:12:06Z | 2018-03085 | 0 | 0 | 0900006482f3000c |
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;