documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2008-0208" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_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-2008-0208-0007 | NRC | Notice of License Amendment Request of Crow Butte Resources, Inc., Crawford, NE, and Opportunity to Request a Hearing NRC-2008-0208 | Crow Butte Resources, Inc. (License Renewal for the In Situ Leach Facility, Crawford, Nebraska); Notice of Atomic Safety and Licensing Board Reconstitution | Notice | 2019-10-16T00:00:00Z | 2019 | 10 | 2025-05-21T06:59:06Z | 2019-22548 | 0 | 0 | 09000064840a6336 | |||
| NRC-2008-0208-0006 | NRC | Notice of License Amendment Request of Crow Butte Resources, Inc., Crawford, NE, and Opportunity to Request a Hearing NRC-2008-0208 | Crow Butte Resources, Inc.; Issuance of Exemption | Notice | 2016-11-21T00:00:00Z | 2016 | 11 | 2025-05-21T07:15:27Z | 2016-27946 | 0 | 0 | 09000064823aa4af | |||
| NRC-2008-0208-0005 | NRC | Notice of License Amendment Request of Crow Butte Resources, Inc., Crawford, NE, and Opportunity to Request a Hearing NRC-2008-0208 | Atomic Safety and Licensing Board; In the Matter of Crow Butte Resources, Inc.; Notice Regarding Weapons at Atomic Safety and Licensing Board Proceeding | Notice | 2015-07-21T00:00:00Z | 2015 | 7 | 2025-05-21T07:24:25Z | 2015-17848 | 0 | 0 | 0900006481b94600 | |||
| NRC-2008-0208-0004 | NRC | Notice of License Amendment Request of Crow Butte Resources, Inc., Crawford, NE, and Opportunity to Request a Hearing NRC-2008-0208 | Atomic Safety and Licensing Board; In the Matter of Crow Butte Resources, Inc. (License Renewal for the In Situ Leach Facility, Crawford, Nebraska) | Notice | 2015-07-17T00:00:00Z | 2015 | 7 | 2025-05-21T07:24:28Z | 2015-17593 | 0 | 0 | 0900006481b8e4f6 | |||
| NRC-2008-0208-0003 | NRC | Notice of License Amendment Request of Crow Butte Resources, Inc., Crawford, NE, and Opportunity to Request a Hearing NRC-2008-0208 | Renewed Materials License, Operating License SUA-1534, Crow Butte Resources, Inc., Crow Butte Uranium In-Situ Recovery Project; Issuance of Renewed License | Notice | 2014-11-17T00:00:00Z | 2014 | 11 | 2025-05-21T07:30:38Z | 2014-27197 | 0 | 0 | 0900006481932cf0 | |||
| NRC-2008-0208-0002 | NRC | Notice of License Amendment Request of Crow Butte Resources, Inc., Crawford, NE, and Opportunity to Request a Hearing NRC-2008-0208 | License Renewal of Crow Butte ISR, Uranium In Situ Recovery Project; Issuance of Environmental Assessment and Finding of No Significant Impact | Notice | 2014-10-30T00:00:00Z | 2014 | 10 | 2025-05-21T07:30:42Z | 2014-25853 | 0 | 0 | 0900006481908699 | |||
| NRC-2008-0208-0001 | NRC | Notice of License Amendment Request of Crow Butte Resources, Inc., Crawford, NE, and Opportunity to Request a Hearing NRC-2008-0208 | Notice of License Amendment Request of Crow Butte Resources, Inc., Crawford, NE, and Opportunity To Request a Hearing | Notice | 2008-04-07T00:00:00Z | 2008 | 4 | 2008-04-07T00:00:00Z | 2025-05-21T09:13:51Z | E8-07175 | 0 | 0 | 0900006480465951 |
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;