documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "NRC" and docket_id = "NRC-2012-0067" 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-2012-0067-0013 | NRC | Order Modifying Licenses NRC-2012-0067 | Final Interim Staff Guidance, JLD-ISG-2012-03, "Compliance with Order EA-12-051, Reliable Spent Fuel Pool Instrumentation" | Other | 2012-09-07T00:00:00Z | 2012 | 9 | 2012-09-07T00:00:00Z | 2025-05-21T08:47:18Z | 0 | 0 | 090000648110b919 | |||
| NRC-2012-0067-0012 | NRC | Order Modifying Licenses NRC-2012-0067 | Japan Lessons-Learned Project Directorate Interim Staff Guidance JLD-ISG-2012-03; Compliance with Order EA-12-051, Order Modifying Licenses with Regard to Reliable Spent Fuel Pool Instrumentation | Notice | 2012-09-07T00:00:00Z | 2012 | 9 | 2025-05-21T08:47:18Z | 2012-22069 | 0 | 0 | 090000648110b852 | |||
| NRC-2012-0067-0005 | NRC | Order Modifying Licenses NRC-2012-0067 | NEI 12-02 (Revision B) - Industry Guidance for Compliance with NRC Order EA-12-051 "To Modify Licenses with Regard to Reliable Spent Fuel Pool Instrumentation" | Other | 2012-06-08T00:00:00Z | 2012 | 6 | 2012-06-08T00:00:00Z | 2025-05-21T08:47:51Z | 0 | 0 | 090000648103c260 | |||
| NRC-2012-0067-0004 | NRC | Order Modifying Licenses NRC-2012-0067 | Draft Interim Staff Guidance, JLD-ISG-2012-03, "Compliance with Order EA-12-051, Order Modifying Licenses with Regard to Reliable Spent Fuel Pool Instrumentation" | Other | 2012-06-07T00:00:00Z | 2012 | 6 | 2012-06-07T00:00:00Z | 2025-05-21T08:47:52Z | 0 | 0 | 0900006481039704 | |||
| NRC-2012-0067-0003 | NRC | Order Modifying Licenses NRC-2012-0067 | Interim Staff Guidance JLD-ISG-2012-03; Compliance with Order EA-12-051, Order Modifying Licenses with Regard to Reliable Spent Fuel Pool Instrumentation | Notice | 2012-06-07T00:00:00Z | 2012 | 6 | 2012-06-07T00:00:00Z | 2012-07-08T03:59:59Z | 2025-05-21T08:47:52Z | 2012-13811 | 0 | 0 | 090000648103a277 | |
| NRC-2012-0067-0002 | NRC | Order Modifying Licenses NRC-2012-0067 | Fukushima-Related Orders Modifying Licenses; Establishment of Atomic Safety and Licensing Board | Notice | 2012-04-24T00:00:00Z | 2012 | 4 | 2012-04-24T00:00:00Z | 2025-05-21T08:48:05Z | 2012-09801 | 0 | 0 | 0900006480ff753a | ||
| NRC-2012-0067-0001 | NRC | Order Modifying Licenses NRC-2012-0067 | In the Matter of All Power Reactor Licensees and Holders of Construction Permits in Active or Deferred Status: Order Modifying Licenses with Regard to Reliable Spent Fuel Pool Instrumentation (Effective Immediately) | Notice | 2012-03-19T00:00:00Z | 2012 | 3 | 2025-05-21T08:48:31Z | 2012-06550 | 0 | 0 | 0900006480fdad35 |
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;