documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NRC-2022-0159" 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)
document_type 3
agency_id 1
- NRC 6
| 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-0159-0006 | NRC | Maintenance, Testing, and Replacement of Vented Lead Acid Storage Batteries for Production and Utilization Facilities NRC-2022-0159 | Regulatory Guide 1.129, Revision 4 "Maintenance, Testing, and Replacement of Vented Lead-Acid Storage Batteries for Production and Utilization Facilities | Supporting & Related Material | 2023-05-24T00:00:00Z | 2023 | 5 | 2025-05-21T06:34:51Z | 0 | 0 | 0900006485a41336 | ||||
| NRC-2022-0159-0005 | NRC | Maintenance, Testing, and Replacement of Vented Lead Acid Storage Batteries for Production and Utilization Facilities NRC-2022-0159 | Regulatory Guide: Maintenance, Testing, and Replacement of Vented Lead-Acid Storage Batteries for Production and Utilization Facilities | Rule | 2023-03-31T00:00:00Z | 2023 | 3 | 2025-05-21T06:35:37Z | C1-2023-06285 | 0 | 0 | 09000064858a171d | |||
| NRC-2022-0159-0004 | NRC | Maintenance, Testing, and Replacement of Vented Lead Acid Storage Batteries for Production and Utilization Facilities NRC-2022-0159 | Regulatory Guide: Maintenance, Testing, and Replacement of Vented Lead-Acid Storage Batteries for Production and Utilization Facilities | Rule | 2023-03-27T00:00:00Z | 2023 | 3 | 2025-05-21T06:35:41Z | 2023-06285 | 0 | 0 | 0900006485869295 | |||
| NRC-2022-0159-0002 | NRC | Maintenance, Testing, and Replacement of Vented Lead Acid Storage Batteries for Production and Utilization Facilities NRC-2022-0159 | Draft Regulatory Guide DG-1401 "Maintenance, Testing, and Replacement of Vented Lead Acid Storage Batteries for Production and Utilization Facilities" | Supporting & Related Material | 2022-08-29T00:00:00Z | 2022 | 8 | 2025-05-21T06:36:46Z | 0 | 0 | 090000648528659b | ||||
| NRC-2022-0159-0001 | NRC | Maintenance, Testing, and Replacement of Vented Lead Acid Storage Batteries for Production and Utilization Facilities NRC-2022-0159 | Maintenance, Testing, and Replacement of Vented Lead Acid Storage Batteries for Production and Utilization Facilities | Notice | 2022-08-29T00:00:00Z | 2022 | 8 | 2022-08-29T00:00:00Z | 2022-09-29T03:59:59Z | 2025-05-21T06:36:46Z | 2022-18526 | 0 | 0 | 090000648528529d | |
| NRC-2022-0159-0003 | NRC | Maintenance, Testing, and Replacement of Vented Lead Acid Storage Batteries for Production and Utilization Facilities NRC-2022-0159 | Regulatory Analysis - Draft Regulatory Guide DG-1401 "Maintenance, Testing, and Replacement of Vented Lead Acid Storage Batteries for Production and Utilization Facilities" | Supporting & Related Material | 2022-08-29T00:00:00Z | 2022 | 8 | 2025-05-21T06:36:46Z | 0 | 0 | 09000064852865d0 |
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;