documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NRC-2020-0029" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: open_for_comment, 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-2020-0029-0006 | NRC | • Approval of the 2023 Edition of the American Society of Mechanical Engineers Boiler and Pressure Vessel Code and Code Cases, Revision 41 NRC-2020-0029 | Draft Regulatory Guide (DG) DG-1447 (ML25080A261) | Supporting & Related Material | 2026-02-27T05:00:00Z | 2026 | 2 | 2026-02-27T20:13:30Z | 0 | 0 | 09000064b91e37ad | ||||
| NRC-2020-0029-0008 | NRC | • Approval of the 2023 Edition of the American Society of Mechanical Engineers Boiler and Pressure Vessel Code and Code Cases, Revision 41 NRC-2020-0029 | Draft Regulatory Guide (DG) DG-1449 (ML25083A257) | Supporting & Related Material | 2026-02-27T05:00:00Z | 2026 | 2 | 2026-02-27T20:15:42Z | 0 | 0 | 09000064b91e37b2 | ||||
| NRC-2020-0029-0007 | NRC | • Approval of the 2023 Edition of the American Society of Mechanical Engineers Boiler and Pressure Vessel Code and Code Cases, Revision 41 NRC-2020-0029 | Draft Regulatory Guide (DG) DG-1448 (ML25083A254) | Supporting & Related Material | 2026-02-27T05:00:00Z | 2026 | 2 | 2026-02-27T20:15:02Z | 0 | 0 | 09000064b91e37af | ||||
| NRC-2020-0029-0001 | NRC | • Approval of the 2023 Edition of the American Society of Mechanical Engineers Boiler and Pressure Vessel Code and Code Cases, Revision 41 NRC-2020-0029 | 2023 Edition of the American Society of Mechanical Engineers Boiler and Pressure Vessel Code and Code Cases | Proposed Rule | 2026-02-27T05:00:00Z | 2026 | 2 | 2026-02-27T05:00:00Z | 2026-04-29T03:59:59Z | 2026-02-27T19:36:19Z | 2026-03993 | 1 | 0 | 09000064b91e3272 | |
| NRC-2020-0029-0004 | NRC | • Approval of the 2023 Edition of the American Society of Mechanical Engineers Boiler and Pressure Vessel Code and Code Cases, Revision 41 NRC-2020-0029 | Unofficial Redline Rule Language for the Proposed Rule: Approval of the 2023 Edition of the ASME Boiler and Pressure Vessel Code and Code Cases, Revision 41 (ML25182A125) | Supporting & Related Material | 2026-02-27T05:00:00Z | 2026 | 2 | 2026-02-27T20:16:50Z | 0 | 0 | 09000064b91e37c4 | ||||
| NRC-2020-0029-0005 | NRC | • Approval of the 2023 Edition of the American Society of Mechanical Engineers Boiler and Pressure Vessel Code and Code Cases, Revision 41 NRC-2020-0029 | Draft Regulatory Guide (DG) DG-1446 (ML25079A307) | Supporting & Related Material | 2026-02-27T05:00:00Z | 2026 | 2 | 2026-02-27T20:12:43Z | 0 | 0 | 09000064b91e37c6 | ||||
| NRC-2020-0029-0003 | NRC | • Approval of the 2023 Edition of the American Society of Mechanical Engineers Boiler and Pressure Vessel Code and Code Cases, Revision 41 NRC-2020-0029 | Regulatory Analysis for the Proposed Rule: Approval of the 2023 Edition of the ASME Boiler and Pressure Vessel Code and Code Cases, Revision 41 (ML25182A128) | Supporting & Related Material | 2026-02-27T05:00:00Z | 2026 | 2 | 2026-02-27T20:16:33Z | 0 | 0 | 09000064b91e37b4 |
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;