documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "NRC" and docket_id = "NRC-2013-0102" 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), 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-2013-0102-0007 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | Summary of September 19, 2013 Public Meeting on Cumulative Effects of Regulation Process Changes | Other | 2013-10-02T00:00:00Z | 2013 | 10 | 2013-10-02T00:00:00Z | 2025-05-21T08:43:34Z | 0 | 0 | 0900006481442d9f | |||
| NRC-2013-0102-0009 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | Industry Presentation on Case Studies for September 19, 2013 Public Meeting on Cumulative Effects of Regulation | Other | 2013-10-02T00:00:00Z | 2013 | 10 | 2013-10-02T00:00:00Z | 2025-05-21T08:43:34Z | 0 | 0 | 0900006481442da1 | |||
| NRC-2013-0102-0010 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | Industry Presentation on Cumulative Impact for September 19, 2013 Public Meeting on Cumulative Effects of Regulation | Other | 2013-10-02T00:00:00Z | 2013 | 10 | 2013-10-02T00:00:00Z | 2025-05-21T08:43:34Z | 0 | 0 | 0900006481442da2 | |||
| NRC-2013-0102-0006 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | Forthcoming Category 3 Public Meeting to Discuss the Cumulative Effects of Regulation | Other | 2013-10-02T00:00:00Z | 2013 | 10 | 2013-10-02T00:00:00Z | 2025-05-21T08:43:34Z | 0 | 0 | 0900006481442d9e | |||
| NRC-2013-0102-0008 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | NRC Slides Presented at September 19, 2013 Public Meeting on the Cumulative Effects of Regulation | Other | 2013-10-02T00:00:00Z | 2013 | 10 | 2013-10-02T00:00:00Z | 2025-05-21T08:43:34Z | 0 | 0 | 0900006481442da0 | |||
| NRC-2013-0102-0011 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | NEI Handout for September 19, 2013 Public Meeting on Cumulative Effects of Regulation | Other | 2013-10-02T00:00:00Z | 2013 | 10 | 2013-10-02T00:00:00Z | 2025-05-21T08:43:34Z | 0 | 0 | 0900006481442da3 | |||
| NRC-2013-0102-0004 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | Letter from Adrian P. Heymer, Nuclear Energy Institute, dated May 21, 2013 regarding Case Studies on the Cost and Schedule Estimates used in Regulatory Analysis | Other | 2013-05-30T00:00:00Z | 2013 | 5 | 2013-05-30T00:00:00Z | 2025-05-21T08:45:41Z | 0 | 0 | 09000064813020af | |||
| NRC-2013-0102-0001 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | Staff Requirements - SECY-12-0137 - Implementation of the Cumulative Effects of Regulation Process Changes | Other | 2013-05-15T00:00:00Z | 2013 | 5 | 2013-05-15T00:00:00Z | 2025-05-21T08:45:54Z | 0 | 0 | 09000064812e5b55 | |||
| NRC-2013-0102-0002 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | Notice of Forthcoming Category 3 Public Meeting to Discuss the Cumulative Effects of Regulation | Other | 2013-05-15T00:00:00Z | 2013 | 5 | 2013-05-15T00:00:00Z | 2025-05-21T08:45:54Z | 0 | 0 | 09000064812e5b56 | |||
| NRC-2013-0102-0003 | NRC | Cumulative Effects of Regulation NRC-2013-0102 | Slides Presented at the May 8, 2013 Public Meeting on the Cumulative Effects of Regulation | Other | 2013-05-15T00:00:00Z | 2013 | 5 | 2013-05-15T00:00:00Z | 2025-05-21T08:45:54Z | 0 | 0 | 09000064812e5b57 |
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;