documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "NRC-2013-0235" and posted_year = 2017 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-2013-0235-0026 | NRC | Northwest Medical Isotopes, LLC - Request to Submit a Two-Part Application NRC-2013-0235 | Northwest Medical Isotopes, LLC; Notice of Hearing | Notice | 2017-11-28T00:00:00Z | 2017 | 11 | 2025-05-21T07:12:27Z | 2017-25577 | 0 | 0 | 0900006482cb6e7c | |||
| NRC-2013-0235-0025 | NRC | Northwest Medical Isotopes, LLC - Request to Submit a Two-Part Application NRC-2013-0235 | E-mail to Robert Hoffman Regarding Draft Environmental Impact Statement for the Construction Permit for the Proposed Northwest Medical Isotopes, LLC Radioisotope Production Facility | Supporting & Related Material | 2017-05-26T00:00:00Z | 2017 | 5 | 2025-05-21T07:13:41Z | 0 | 0 | 090000648263b505 | ||||
| NRC-2013-0235-0024 | NRC | Northwest Medical Isotopes, LLC - Request to Submit a Two-Part Application NRC-2013-0235 | Environmental Impact Statement for the Construction Permit for the Northwest Medical Isotopes Radioisotope Production Facility - Final Report (NUREG-2209) | Supporting & Related Material | 2017-05-18T00:00:00Z | 2017 | 5 | 2025-05-21T07:13:44Z | 0 | 0 | 09000064825dd08e | ||||
| NRC-2013-0235-0023 | NRC | Northwest Medical Isotopes, LLC - Request to Submit a Two-Part Application NRC-2013-0235 | Construction Permit Application for the Northwest Medical Isotopes, LLC, Medical Radioisotope Production Facility; Issuance of Environmental Impact Statement | Notice | 2017-05-18T00:00:00Z | 2017 | 5 | 2025-05-21T07:13:44Z | 2017-10072 | 0 | 0 | 09000064825dcb7d |
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;