documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NRC-2014-0203" 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-2014-0203-0009 | NRC | Proposed Revisions to Conduct of Operations NRC-2014-0203 | Conduct of Operations; Standard Review Plan - Final Issuance of Final Section Revision | Notice | 2016-08-17T00:00:00Z | 2016 | 8 | 2025-05-21T07:16:13Z | 2016-19562 | 0 | 0 | 090000648217ca2f | |||
| NRC-2014-0203-0004 | NRC | Proposed Revisions to Conduct of Operations NRC-2014-0203 | Draft Standard Review Plan Section 13.2.1 - Reactor Operator Requalification Program; Reactor Operator Training | Other | 2014-09-29T00:00:00Z | 2014 | 9 | 2014-09-29T00:00:00Z | 2025-05-21T07:30:50Z | 0 | 0 | 0900006481899c44 | |||
| NRC-2014-0203-0005 | NRC | Proposed Revisions to Conduct of Operations NRC-2014-0203 | Draft Standard Review Plan Section 13.2.2 - Non-Licensed Plant Staff Training | Other | 2014-09-29T00:00:00Z | 2014 | 9 | 2014-09-29T00:00:00Z | 2025-05-21T07:30:50Z | 0 | 0 | 0900006481899c45 | |||
| NRC-2014-0203-0007 | NRC | Proposed Revisions to Conduct of Operations NRC-2014-0203 | Draft Standard Review Plan Section 13.5.2.1 - Operating and Emergency Operating Procedures | Other | 2014-09-29T00:00:00Z | 2014 | 9 | 2014-09-29T00:00:00Z | 2025-05-21T07:30:50Z | 0 | 0 | 0900006481899c47 | |||
| NRC-2014-0203-0006 | NRC | Proposed Revisions to Conduct of Operations NRC-2014-0203 | Draft Standard Review Plan Section 13.5.1.1 - Administrative Procedures - General | Other | 2014-09-29T00:00:00Z | 2014 | 9 | 2014-09-29T00:00:00Z | 2025-05-21T07:30:50Z | 0 | 0 | 0900006481899c46 | |||
| NRC-2014-0203-0003 | NRC | Proposed Revisions to Conduct of Operations NRC-2014-0203 | Draft Standard Review Plan Sections 13.1.2-13.1.3 - Operating Organization | Other | 2014-09-29T00:00:00Z | 2014 | 9 | 2014-09-29T00:00:00Z | 2025-05-21T07:30:50Z | 0 | 0 | 0900006481899c43 | |||
| NRC-2014-0203-0002 | NRC | Proposed Revisions to Conduct of Operations NRC-2014-0203 | Draft Standard Review Plan Section 13.1.1 - Management and Technical Support Organization | Other | 2014-09-29T00:00:00Z | 2014 | 9 | 2014-09-29T00:00:00Z | 2025-05-21T07:30:50Z | 0 | 0 | 0900006481899a9e | |||
| NRC-2014-0203-0001 | NRC | Proposed Revisions to Conduct of Operations NRC-2014-0203 | Proposed Revisions to Conduct of Operations | Notice | 2014-09-24T00:00:00Z | 2014 | 9 | 2014-09-24T00:00:00Z | 2014-11-25T04:59:59Z | 2025-05-21T07:30:51Z | 2014-22733 | 0 | 0 | 090000648188c7f4 |
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;