documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NRC-2014-0203" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-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 |
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;