documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2011-0012" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, last_modified, withdrawn, 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-2011-0012-0044 | NRC | Integrated Low-Level Radioactive Waste Disposal NRC-2011-0012 | Low-Level Waste Disposal | Proposed Rule | 2012-12-07T00:00:00Z | 2012 | 12 | 2012-12-07T00:00:00Z | 2013-01-08T04:59:59Z | 2025-05-21T08:46:41Z | 2012-29527 | 0 | 0 | 0900006481182468 | |
| NRC-2011-0012-0045 | NRC | Integrated Low-Level Radioactive Waste Disposal NRC-2011-0012 | November 2012 Preliminary Rule Language for Proposed Revisions to Low-Level Waste Disposal Requirements | Other | 2012-12-07T00:00:00Z | 2012 | 12 | 2012-12-07T00:00:00Z | 2025-05-21T08:46:41Z | 0 | 0 | 0900006481182f26 | |||
| NRC-2011-0012-0046 | NRC | Integrated Low-Level Radioactive Waste Disposal NRC-2011-0012 | Regulatory Analysis for Proposed Revisions to Low-Level Waste Disposal Requirements | Other | 2012-12-07T00:00:00Z | 2012 | 12 | 2025-05-21T08:46:41Z | 0 | 1 | 0900006481182f27 | ||||
| NRC-2011-0012-0027 | NRC | Integrated Low-Level Radioactive Waste Disposal NRC-2011-0012 | Workshop on Performance Assessments of Near-Surface Disposal Facilities: FEPs Analysis, Scenario and Conceptual Model Development, and Code Selection; Public Meeting | Proposed Rule | 2012-08-13T00:00:00Z | 2012 | 8 | 2025-05-21T08:47:26Z | 2012-19774 | 0 | 0 | 09000064810d12b8 | |||
| NRC-2011-0012-0023 | NRC | Integrated Low-Level Radioactive Waste Disposal NRC-2011-0012 | Low-Level Radioactive Waste Regulatory Management Issues; Public Meeting | Proposed Rule | 2012-07-11T00:00:00Z | 2012 | 7 | 2012-07-11T00:00:00Z | 2012-08-01T03:59:59Z | 2025-05-21T08:47:37Z | 2012-16657 | 0 | 0 | 09000064810861b2 | |
| NRC-2011-0012-0022 | NRC | Integrated Low-Level Radioactive Waste Disposal NRC-2011-0012 | Low-Level Radioactive Waste Management Issues: Public Meeting; Request for Comment | Proposed Rule | 2012-05-08T00:00:00Z | 2012 | 5 | 2012-05-08T00:00:00Z | 2012-08-01T03:59:59Z | 2025-05-21T08:48:00Z | 2012-11160 | 0 | 0 | 090000648100804f | |
| NRC-2011-0012-0020 | NRC | Integrated Low-Level Radioactive Waste Disposal NRC-2011-0012 | Low-Level Radioactive Waste Management Issues: Public Meeting | Notice | 2012-02-22T00:00:00Z | 2012 | 2 | 2012-02-22T00:00:00Z | 2012-08-01T03:59:59Z | 2025-05-21T08:50:09Z | 2012-04090 | 0 | 0 | 0900006480fbd712 |
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;