documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NRC-2013-0195" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-0195-0043 | NRC | Draft Guidance on Acceptable Format and Content for Fuel Cycle Facility Material Control and Accounting Plans NRC-2013-0195 | NRC slides for Part 74 public meeting | Other | 2018-08-27T00:00:00Z | 2018 | 8 | 2018-08-27T00:00:00Z | 2025-05-21T07:08:21Z | 0 | 0 | 090000648365b4b3 | |||
| NRC-2013-0195-0042 | NRC | Draft Guidance on Acceptable Format and Content for Fuel Cycle Facility Material Control and Accounting Plans NRC-2013-0195 | NUREG-2159 Final Draft | Supporting & Related Material | 2018-08-24T00:00:00Z | 2018 | 8 | 2025-05-21T07:08:22Z | 0 | 0 | 0900006483652653 | ||||
| NRC-2013-0195-0041 | NRC | Draft Guidance on Acceptable Format and Content for Fuel Cycle Facility Material Control and Accounting Plans NRC-2013-0195 | NUREG/BR-0096, Revision 2 - Instructions and Guidance for Completing Physical Inventory Summary Reports | Other | 2018-08-23T00:00:00Z | 2018 | 8 | 2018-08-23T00:00:00Z | 2025-05-21T07:08:22Z | 0 | 0 | 090000648364c1b8 | |||
| NRC-2013-0195-0036 | NRC | Draft Guidance on Acceptable Format and Content for Fuel Cycle Facility Material Control and Accounting Plans NRC-2013-0195 | Redline version of NUREG-1065, Revision 3 - Acceptable Standard Format and Content for the Material Control and Accounting Plan Required for Special Nuclear Material of Low Strategic Significance | Other | 2018-08-22T00:00:00Z | 2018 | 8 | 2018-08-22T00:00:00Z | 2025-05-21T07:08:22Z | 0 | 0 | 090000648364121f | |||
| NRC-2013-0195-0038 | NRC | Draft Guidance on Acceptable Format and Content for Fuel Cycle Facility Material Control and Accounting Plans NRC-2013-0195 | Draft Regulatory Guide DG-5057 - Special Nuclear Material Control and Accounting System for Non-Fuel Cycle Facilities | Other | 2018-08-22T00:00:00Z | 2018 | 8 | 2018-08-22T00:00:00Z | 2025-05-21T07:08:22Z | 0 | 0 | 0900006483645b0b | |||
| NRC-2013-0195-0039 | NRC | Draft Guidance on Acceptable Format and Content for Fuel Cycle Facility Material Control and Accounting Plans NRC-2013-0195 | NUREG-1280 Revision 2 - Acceptable Standard Format and Content for the Material Control and Accounting Plan Required for Strategic Special Nuclear Material | Other | 2018-08-22T00:00:00Z | 2018 | 8 | 2018-08-22T00:00:00Z | 2025-05-21T07:08:23Z | 0 | 0 | 0900006483645b9c | |||
| NRC-2013-0195-0040 | NRC | Draft Guidance on Acceptable Format and Content for Fuel Cycle Facility Material Control and Accounting Plans NRC-2013-0195 | NUREG-2158 - Acceptable Standard Format and Content for the Material Control and Accounting Plan Required for Low-Enriched Uranium Enrichment Facilities | Other | 2018-08-22T00:00:00Z | 2018 | 8 | 2018-08-22T00:00:00Z | 2025-05-21T07:08:23Z | 0 | 0 | 0900006483645b9d | |||
| NRC-2013-0195-0037 | NRC | Draft Guidance on Acceptable Format and Content for Fuel Cycle Facility Material Control and Accounting Plans NRC-2013-0195 | Draft NUREG-1065, Revision 3 - Acceptable Standard Format and Content for the Material Control and Accounting Plan Required for Special Nuclear Material of Low Strategic Significance | Other | 2018-08-22T00:00:00Z | 2018 | 8 | 2018-08-22T00:00:00Z | 2025-05-21T07:08:22Z | 0 | 0 | 0900006483640e90 |
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;