documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NRC-2012-0173" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, withdrawn, 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-0173-0011 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | Transcript of the ACRS Fukushima Subcommittee Meeting on December 4, 2012 | Other | 2012-12-14T00:00:00Z | 2012 | 12 | 2012-12-14T00:00:00Z | 2025-05-21T08:46:39Z | 0 | 0 | 090000648118ce54 | |||
| NRC-2012-0173-0009 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | Summary of November 8, 2012 Public Meeting on Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework | Other | 2012-11-28T00:00:00Z | 2012 | 11 | 2012-11-28T00:00:00Z | 2025-05-21T08:46:47Z | 0 | 0 | 09000064811765e1 | |||
| NRC-2012-0173-0008 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | Slides Presented at November 8, 2012 Public Meeting: Developing the Staff’s Response to Fukushima Task Force, Recommendation 1 | Other | 2012-11-09T00:00:00Z | 2012 | 11 | 2012-11-09T00:00:00Z | 2025-05-21T08:47:00Z | 0 | 0 | 09000064811647c6 | |||
| NRC-2012-0173-0007 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | NRC Staff Response to Fukushima Near-Term Task Force Recommendation 1 | Other | 2012-11-02T00:00:00Z | 2012 | 11 | 2012-11-02T00:00:00Z | 2012-12-15T04:59:59Z | 2025-05-21T08:47:03Z | 0 | 0 | 090000648115ac93 | ||
| NRC-2012-0173-0006 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | Forthcoming Category 3 Public Meeting to Discuss the Fukushima Near-Term Task Force | Other | 2012-10-23T00:00:00Z | 2012 | 10 | 2012-10-23T00:00:00Z | 2025-05-21T08:47:06Z | 0 | 0 | 090000648114d268 | |||
| NRC-2012-0173-0005 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | Letter from Adrian P. Heymer Regarding Fukushima Near-Term Task Force Recommendation 1 - Regulatory Framework | Other | 2012-07-25T00:00:00Z | 2012 | 7 | 2012-07-25T00:00:00Z | 2025-05-21T08:47:34Z | 0 | 0 | 09000064810b0fb2 | |||
| NRC-2012-0173-0003 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | Summary of June 20, 2012 Public Meeting to Discuss the Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework | Other | 2012-07-17T00:00:00Z | 2012 | 7 | 2012-07-17T00:00:00Z | 2025-05-21T08:47:36Z | 0 | 0 | 090000648109edfb | |||
| NRC-2012-0173-0001 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | Meeting Notice to Discuss the Near-Term Task Force Recommendation 1 on Regulatory Framework | Other | 2012-07-17T00:00:00Z | 2012 | 7 | 2012-07-17T00:00:00Z | 2025-05-21T08:47:36Z | 0 | 0 | 090000648109edab | |||
| NRC-2012-0173-0002 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | Presentation at June 20, 2012 Public Meeting to Discuss the Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework | Other | 2012-07-17T00:00:00Z | 2012 | 7 | 2025-05-21T08:47:36Z | 0 | 1 | 090000648109edac | ||||
| NRC-2012-0173-0004 | NRC | Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework NRC-2012-0173 | Slides Presented at June 20, 2012 Public Meeting to Discuss the Fukushima Near-Term Task Force Recommendation 1 on Regulatory Framework | Other | 2012-07-17T00:00:00Z | 2012 | 7 | 2012-07-17T00:00:00Z | 2025-05-21T08:47:36Z | 0 | 0 | 090000648109f089 |
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;