documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2012-0059" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, last_modified, 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-2012-0059-0007 | NRC | Incorporation by Reference of Revisions of ASME Regulatory Guides NRC-2012-0059 | Draft Regulatory Guide DG-1298 - ASME Code Cases Not Approved for Use | Supporting & Related Material | 2016-03-10T00:00:00Z | 2016 | 3 | 2025-05-21T07:20:22Z | 0 | 0 | 0900006481eb7b03 | ||||
| NRC-2012-0059-0004 | NRC | Incorporation by Reference of Revisions of ASME Regulatory Guides NRC-2012-0059 | Draft Regulatory Guide DG-1295 - Design, Fabrication, and Materials Code Case Acceptability, ASME Section III | Supporting & Related Material | 2016-03-07T00:00:00Z | 2016 | 3 | 2025-05-21T07:20:23Z | 0 | 0 | 0900006481ea69fb | ||||
| NRC-2012-0059-0005 | NRC | Incorporation by Reference of Revisions of ASME Regulatory Guides NRC-2012-0059 | Draft Regulatory Guide DG-1296 - Inservice Inspection Code Case Acceptabiilty, ASME Section XI, Division 1 | Supporting & Related Material | 2016-03-07T00:00:00Z | 2016 | 3 | 2025-05-21T07:20:23Z | 0 | 0 | 0900006481ea69fe | ||||
| NRC-2012-0059-0006 | NRC | Incorporation by Reference of Revisions of ASME Regulatory Guides NRC-2012-0059 | Draft Regulatory Guide DG-1297 - Operation and Maintenance Code Case Acceptability, ASME OM Code | Supporting & Related Material | 2016-03-07T00:00:00Z | 2016 | 3 | 2025-05-21T07:20:23Z | 0 | 0 | 0900006481ea69ff | ||||
| NRC-2012-0059-0003 | NRC | Incorporation by Reference of Revisions of ASME Regulatory Guides NRC-2012-0059 | Draft Supporting Statement for Approval of American Society of Mechanical Engineers' Code Cases | Supporting & Related Material | 2016-03-03T00:00:00Z | 2016 | 3 | 2025-05-21T07:20:25Z | 0 | 0 | 0900006481e9d57b | ||||
| NRC-2012-0059-0002 | NRC | Incorporation by Reference of Revisions of ASME Regulatory Guides NRC-2012-0059 | Draft Regulatory Analysis for Proposed Rule: Approval of American Society of Mechanical Engineers Code Cases | Supporting & Related Material | 2016-03-03T00:00:00Z | 2016 | 3 | 2025-05-21T07:20:25Z | 0 | 0 | 0900006481e9d54e | ||||
| NRC-2012-0059-0001 | NRC | Incorporation by Reference of Revisions of ASME Regulatory Guides NRC-2012-0059 | Approval of American Society of Mechanical Engineers Code Cases | Proposed Rule | 2016-03-02T00:00:00Z | 2016 | 3 | 2016-03-02T00:00:00Z | 2016-05-17T03:59:59Z | 2025-05-21T07:20:25Z | 2016-04355 | 0 | 0 | 0900006481e98e1c |
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;