documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "NRC" and docket_id = "NRC-2022-0069" 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-2022-0069-0007 | NRC | Information Collection: 10 CFR Part 37 Physical Protection of Category 1 and Category 2 Quantities of Radioactive Material NRC-2022-0069 | Information Collection: Physical Protection of Category 1 and Category 2 Quantities of Radioactive Material | Notice | 2022-11-17T00:00:00Z | 2022 | 11 | 2022-11-17T00:00:00Z | 2022-12-20T04:59:59Z | 2025-05-21T06:36:25Z | 2022-24996 | 0 | 0 | 09000064854bdefd | |
| NRC-2022-0069-0006 | NRC | Information Collection: 10 CFR Part 37 Physical Protection of Category 1 and Category 2 Quantities of Radioactive Material NRC-2022-0069 | FINAL 10 CFR Part 37 supporting statement for 2022 | Supporting & Related Material | 2022-11-10T00:00:00Z | 2022 | 11 | 2025-05-21T06:36:27Z | 0 | 0 | 09000064854a35e7 | ||||
| NRC-2022-0069-0004 | NRC | Information Collection: 10 CFR Part 37 Physical Protection of Category 1 and Category 2 Quantities of Radioactive Material NRC-2022-0069 | Information Collection: Physical Protection of Category 1 and Category 2 Quantities of Radioactive Material | Notice | 2022-08-10T00:00:00Z | 2022 | 8 | 2022-08-10T00:00:00Z | 2022-10-12T03:59:59Z | 2025-05-21T06:36:51Z | 2022-17170 | 0 | 0 | 090000648522c2f6 | |
| NRC-2022-0069-0003 | NRC | Information Collection: 10 CFR Part 37 Physical Protection of Category 1 and Category 2 Quantities of Radioactive Material NRC-2022-0069 | NRC Form 755, Advance Notification to the NRC of Shipments of Category 1 Quantities of Radioactive Material | Supporting & Related Material | 2022-07-19T00:00:00Z | 2022 | 7 | 2025-05-21T06:37:02Z | 0 | 0 | 09000064851d32bf | ||||
| NRC-2022-0069-0002 | NRC | Information Collection: 10 CFR Part 37 Physical Protection of Category 1 and Category 2 Quantities of Radioactive Material NRC-2022-0069 | 10 CFR Part 37 Burden Spreadsheet | Supporting & Related Material | 2022-07-19T00:00:00Z | 2022 | 7 | 2025-05-21T06:37:02Z | 0 | 0 | 09000064851d329a | ||||
| NRC-2022-0069-0001 | NRC | Information Collection: 10 CFR Part 37 Physical Protection of Category 1 and Category 2 Quantities of Radioactive Material NRC-2022-0069 | 10 CFR Part 37 DRAFT supporting statement | Supporting & Related Material | 2022-07-19T00:00:00Z | 2022 | 7 | 2025-05-21T06:37:02Z | 0 | 0 | 09000064851d3295 |
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;