documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NRC-2010-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- NRC 9
| 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-2010-0012-0010 | NRC | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria NRC-2010-0012 | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria | Rule | 2012-08-28T00:00:00Z | 2012 | 8 | 2025-05-21T08:47:22Z | 2012-21207 | 0 | 0 | 09000064810f495c | |||
| NRC-2010-0012-0008 | NRC | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria NRC-2010-0012 | Regulatory Analysis for Proposed Rule - Requirements for Maintenance of Inspections, Tests, Analyses and Acceptance Criteria | Supporting & Related Material | 2011-05-14T00:00:00Z | 2011 | 5 | 2025-05-21T08:52:33Z | 0 | 0 | 0900006480c7bb31 | ||||
| NRC-2010-0012-0006 | NRC | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria NRC-2010-0012 | Regulatory Guide 1.215, "Guidance for ITAAC Closure Under 10 CFR Part 52," Revision 0 (October 31, 2009) | Supporting & Related Material | 2011-05-13T00:00:00Z | 2011 | 5 | 2025-05-21T08:52:35Z | 0 | 0 | 0900006480c7a57e | ||||
| NRC-2010-0012-0002 | NRC | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria NRC-2010-0012 | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria | Proposed Rule | 2011-05-13T00:00:00Z | 2011 | 5 | 2011-05-13T00:00:00Z | 2011-07-28T03:59:59Z | 2025-05-21T08:52:35Z | 2011-11679 | 0 | 0 | 0900006480c79d9f | |
| NRC-2010-0012-0004 | NRC | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria NRC-2010-0012 | SRM-M090922 - Staff Requirements - Periodic Briefing on New Reactor Issues - Progress in Resolving Issues Associated with Inspections, Tests, Analyses and Acceptance Criteria (ITAAC), 9:30 A.M., Tuesday, September 22, 2009 (October 16, 2009) | Supporting & Related Material | 2011-05-13T00:00:00Z | 2011 | 5 | 2025-05-21T08:52:35Z | 0 | 0 | 0900006480c7a579 | ||||
| NRC-2010-0012-0007 | NRC | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria NRC-2010-0012 | NUREG/BR-0058, "Regulatory Analysis Guidelines of the U.S. Nuclear Regulatory Commission," Revision 4 (September 2004) | Supporting & Related Material | 2011-05-13T00:00:00Z | 2011 | 5 | 2025-05-21T08:52:35Z | 0 | 0 | 0900006480c7a5af | ||||
| NRC-2010-0012-0003 | NRC | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria NRC-2010-0012 | SECY-09-0119, "Staff Progress in Resolving Issues Associated with Inspections, Tests, Analyses and Acceptance Criteria" (August 26, 2009) | Supporting & Related Material | 2011-05-13T00:00:00Z | 2011 | 5 | 2025-05-21T08:52:35Z | 0 | 0 | 0900006480c7a575 | ||||
| NRC-2010-0012-0005 | NRC | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria NRC-2010-0012 | Inspection Procedure 40600, "Licensee Program for ITAAC Management" | Supporting & Related Material | 2011-05-13T00:00:00Z | 2011 | 5 | 2025-05-21T08:52:35Z | 0 | 0 | 0900006480c7a57d | ||||
| NRC-2010-0012-0001 | NRC | Requirements for Maintenance of Inspections, Tests, Analyses, and Acceptance Criteria NRC-2010-0012 | Draft Rule Language - Inspections, Test, Analyses and Acceptance Criteria (ITAAC) Maintenance Provisions | Proposed Rule | 2010-02-26T00:00:00Z | 2010 | 2 | 2010-02-26T00:00:00Z | 2025-05-21T09:01:53Z | 0 | 0 | 0900006480aaf450 |
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;