documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "NRC" and docket_id = "NRC-2011-0191" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- NRC · 6 ✖
| 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-2011-0191-0010 | NRC | Draft License Renewal Interim Staff Guidance Document NRC-2011-0191 | Interim Staff Guidance; Availability: License Renewal Interim Staff Guidance LR-ISG-2011-05 - Ongoing Review of Operating Experience | Notice | 2012-03-16T00:00:00Z | 2012 | 3 | 2025-05-21T08:49:32Z | 2012-06409 | 0 | 0 | 0900006480fd89a8 | |||
| NRC-2011-0191-0007 | NRC | Draft License Renewal Interim Staff Guidance Document NRC-2011-0191 | Draft License Renewal Interim Staff Guidance LR-ISG-2011-05: Ongoing Review of Operating Experience | Notice | 2011-11-25T00:00:00Z | 2011 | 11 | 2011-11-25T00:00:00Z | 2011-12-16T04:59:59Z | 2025-05-21T08:51:07Z | 2011-30397 | 0 | 0 | 0900006480f735f4 | |
| NRC-2011-0191-0008 | NRC | Draft License Renewal Interim Staff Guidance Document NRC-2011-0191 | Revised Draft License Renewal Interim Staff Guidance LR-ISG-2011-05, Ongoing Review of Operating Experience | Supporting & Related Material | 2011-11-25T00:00:00Z | 2011 | 11 | 2025-05-21T08:51:07Z | 0 | 0 | 0900006480f736a6 | ||||
| NRC-2011-0191-0004 | NRC | Draft License Renewal Interim Staff Guidance Document NRC-2011-0191 | Draft License Renewal Interim Staff Guidance LR-ISG-2011-05; Ongoing Review of Operating Experience | Notice | 2011-09-20T00:00:00Z | 2011 | 9 | 2011-09-20T00:00:00Z | 2011-10-24T03:59:59Z | 2025-05-21T08:51:50Z | 2011-24061 | 0 | 0 | 0900006480f23f93 | |
| NRC-2011-0191-0002 | NRC | Draft License Renewal Interim Staff Guidance Document NRC-2011-0191 | Draft License Renewal Interim Staff Guidance LR-ISG-2011-05, Ongoing Review of Operating Experience | Supporting & Related Material | 2011-08-24T00:00:00Z | 2011 | 8 | 2025-05-21T08:51:57Z | 0 | 0 | 0900006480eea8de | ||||
| NRC-2011-0191-0001 | NRC | Draft License Renewal Interim Staff Guidance Document NRC-2011-0191 | Draft License Renewal Interim Staff Guidance: LR-ISG-2011-05, Ongoing Review of Operating Experience; Request for Public Comment | Notice | 2011-08-24T00:00:00Z | 2011 | 8 | 2011-08-24T00:00:00Z | 2011-09-24T03:59:59Z | 2025-05-21T08:51:57Z | 2011-21629 | 0 | 0 | 0900006480eeb28a |
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;