documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2011-0286" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Notice 3
- Other 2
- Proposed Rule 1
- Rule 1
agency_id 1
- NRC 7
| 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-0286-0013 | NRC | Draft Regulatory Guide; Issuance, Availability NRC-2011-0286 | Decommissioning Planning During Operations; Regulatory Guide Issuance | Rule | 2013-01-04T00:00:00Z | 2013 | 1 | 2025-05-21T08:46:35Z | 2012-31705 | 0 | 0 | 09000064811a7f2f | |||
| NRC-2011-0286-0011 | NRC | Draft Regulatory Guide; Issuance, Availability NRC-2011-0286 | Decommissioning Planning During Operations | Proposed Rule | 2012-07-12T00:00:00Z | 2012 | 7 | 2012-07-12T00:00:00Z | 2025-05-21T08:47:37Z | 2012-17014 | 0 | 0 | 0900006481088ec1 | ||
| NRC-2011-0286-0012 | NRC | Draft Regulatory Guide; Issuance, Availability NRC-2011-0286 | Proposed Draft Guidance - Decommissioning Planning During Operations | Other | 2012-07-12T00:00:00Z | 2012 | 7 | 2012-07-12T00:00:00Z | 2025-05-21T08:47:37Z | 0 | 0 | 0900006481089f86 | |||
| NRC-2011-0286-0008 | NRC | Draft Regulatory Guide; Issuance, Availability NRC-2011-0286 | Guidance for Decommissioning Planning During Operations; Correction | Notice | 2012-03-08T00:00:00Z | 2012 | 3 | 2025-05-21T08:49:43Z | 2012-05658 | 0 | 0 | 0900006480fd1c06 | |||
| NRC-2011-0286-0003 | NRC | Draft Regulatory Guide; Issuance, Availability NRC-2011-0286 | Guidance for Decommissioning Planning During Operations | Notice | 2012-02-15T00:00:00Z | 2012 | 2 | 2012-02-15T00:00:00Z | 2012-03-31T03:59:59Z | 2025-05-21T08:50:15Z | 2012-03522 | 0 | 0 | 0900006480fb72d7 | |
| NRC-2011-0286-0002 | NRC | Draft Regulatory Guide; Issuance, Availability NRC-2011-0286 | Draft Regulatory Guide DG-4014 - Decommissioning Planning During Operations | Other | 2011-12-13T00:00:00Z | 2011 | 12 | 2011-12-13T00:00:00Z | 2025-05-21T08:51:01Z | 0 | 0 | 0900006480f81966 | |||
| NRC-2011-0286-0001 | NRC | Draft Regulatory Guide; Issuance, Availability NRC-2011-0286 | Decommissioning Planning During Operations | Notice | 2011-12-13T00:00:00Z | 2011 | 12 | 2011-12-13T00:00:00Z | 2012-02-11T04:59:59Z | 2025-05-21T08:51:01Z | 2011-31905 | 0 | 0 | 0900006480f812be |
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;