documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "NRC-2023-0161" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, 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-2023-0161-0012 | NRC | None NRC-2023-0161 | Information Collection: Domestic Licensing of Production and Utilization Facilities | Notice | 2024-10-24T00:00:00Z | 2024 | 10 | 2024-10-24T00:00:00Z | 2024-11-26T04:59:59Z | 2025-05-21T06:21:54Z | 2024-24741 | 0 | 0 | 09000064867e10da | |
| NRC-2023-0161-0011 | NRC | None NRC-2023-0161 | Table 1 - Summary of Supporting Statements (Burden Spreadsheet) | Supporting & Related Material | 2024-10-17T00:00:00Z | 2024 | 10 | 2025-05-21T06:21:55Z | 0 | 0 | 09000064867d4d69 | ||||
| NRC-2023-0161-0004 | NRC | None NRC-2023-0161 | Part 50 section 1 final supporting statement | Supporting & Related Material | 2024-10-17T00:00:00Z | 2024 | 10 | 2025-05-21T06:21:55Z | 0 | 0 | 09000064867d3fc6 | ||||
| NRC-2023-0161-0006 | NRC | None NRC-2023-0161 | Part 50 section 3 final supporting statement | Supporting & Related Material | 2024-10-17T00:00:00Z | 2024 | 10 | 2025-05-21T06:21:55Z | 0 | 0 | 09000064867d3fc8 | ||||
| NRC-2023-0161-0009 | NRC | None NRC-2023-0161 | Part 50 section 6 final supporting statement | Supporting & Related Material | 2024-10-17T00:00:00Z | 2024 | 10 | 2025-05-21T06:21:55Z | 0 | 0 | 09000064867d4d67 | ||||
| NRC-2023-0161-0010 | NRC | None NRC-2023-0161 | Part 50 section 7 final supporting statement | Supporting & Related Material | 2024-10-17T00:00:00Z | 2024 | 10 | 2025-05-21T06:21:55Z | 0 | 0 | 09000064867d4d68 | ||||
| NRC-2023-0161-0005 | NRC | None NRC-2023-0161 | Part 50 section 2 final supporting statement 2 | Supporting & Related Material | 2024-10-17T00:00:00Z | 2024 | 10 | 2025-05-21T06:21:56Z | 0 | 0 | 09000064867d3fc7 | ||||
| NRC-2023-0161-0007 | NRC | None NRC-2023-0161 | Part 50 section 4 final supporting statement | Supporting & Related Material | 2024-10-17T00:00:00Z | 2024 | 10 | 2025-05-21T06:21:55Z | 0 | 0 | 09000064867d3fc9 | ||||
| NRC-2023-0161-0008 | NRC | None NRC-2023-0161 | Part 50 section 5 final supporting statement | Supporting & Related Material | 2024-10-17T00:00:00Z | 2024 | 10 | 2025-05-21T06:21:55Z | 0 | 0 | 09000064867d3fca | ||||
| NRC-2023-0161-0002 | NRC | None NRC-2023-0161 | Information Collection: Domestic Licensing of Production and Utilization Facilities | Notice | 2024-06-13T00:00:00Z | 2024 | 6 | 2024-06-13T00:00:00Z | 2024-08-13T03:59:59Z | 2025-05-21T06:26:10Z | 2024-12965 | 0 | 0 | 09000064865b30ec | |
| NRC-2023-0161-0001 | NRC | None NRC-2023-0161 | Draft supporting statements and burden spreadsheet for Part 50 information collection renewal 2024 | Supporting & Related Material | 2024-06-06T00:00:00Z | 2024 | 6 | 2025-05-21T06:26:29Z | 0 | 0 | 0900006486599d21 |
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;