documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NRC-2016-0231" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_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-2016-0231-0183 | NRC | Waste Control Specialists LLC's Consolidated Interim Spent Fuel Storage Facility Project NRC-2016-0231 | Waste Control Specialists LLC's Consolidated Interim Spent Fuel Storage Facility Project; Withdrawal of Notice of Opportunity to Request a Hearing | Notice | 2017-07-20T00:00:00Z | 2017 | 7 | 2025-05-21T07:13:11Z | 2017-15239 | 0 | 0 | 090000648294a962 | |||
| NRC-2016-0231-0146 | NRC | Waste Control Specialists LLC's Consolidated Interim Spent Fuel Storage Facility Project NRC-2016-0231 | In the Matter of Waste Control Specialists LLC; Consolidated Interim Storage Facility; Correction | Notice | 2017-04-10T00:00:00Z | 2017 | 4 | 2025-05-21T07:13:57Z | 2017-07050 | 0 | 0 | 0900006482546052 | |||
| NRC-2016-0231-0137 | NRC | Waste Control Specialists LLC's Consolidated Interim Spent Fuel Storage Facility Project NRC-2016-0231 | In the Matter of Waste Control Specialists, LLC; Consolidated Interim Storage Facility; Extension of Filing Deadline to Request a Hearing and Petition for Leave to Intervene | Notice | 2017-04-04T00:00:00Z | 2017 | 4 | 2025-05-21T07:13:59Z | 2017-06575 | 0 | 0 | 0900006482539bbe | |||
| NRC-2016-0231-0018 | NRC | Waste Control Specialists LLC's Consolidated Interim Spent Fuel Storage Facility Project NRC-2016-0231 | Waste Control Specialists LLC's Consolidated Interim Spent Fuel Storage Facility; Environmental Impact Statement; Extension of Scoping Comment Period; Additional Public Scoping Comment Meeting | Notice | 2017-03-16T00:00:00Z | 2017 | 3 | 2017-03-16T00:00:00Z | 2017-04-29T03:59:59Z | 2025-05-21T07:14:14Z | 2017-05294 | 0 | 0 | 090000648250c66b | |
| NRC-2016-0231-0004 | NRC | Waste Control Specialists LLC's Consolidated Interim Spent Fuel Storage Facility Project NRC-2016-0231 | License Applications: Waste Control Specialists, LLC's Consolidated Interim Spent Fuel Storage Facility Project | Notice | 2017-01-30T00:00:00Z | 2017 | 1 | 2017-01-30T00:00:00Z | 2025-05-21T07:14:42Z | 2017-01973 | 0 | 0 | 090000648249d41a | ||
| NRC-2016-0231-0005 | NRC | Waste Control Specialists LLC's Consolidated Interim Spent Fuel Storage Facility Project NRC-2016-0231 | Environmental Reviews: Waste Control Specialists, LLC; Consolidated Interim Spent Fuel Storage Facility Project | Notice | 2017-01-30T00:00:00Z | 2017 | 1 | 2017-01-30T00:00:00Z | 2017-04-29T03:59:59Z | 2025-05-21T07:14:42Z | 2017-01966 | 0 | 0 | 090000648249d478 |
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;