documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NRC-2022-0002" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2022-0002-0010 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 702nd Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-12-27T00:00:00Z | 2022 | 12 | 2025-05-21T06:36:17Z | 2022-28094 | 0 | 0 | 0900006485556c96 | |||
| NRC-2022-0002-0009 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 701st Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-11-14T00:00:00Z | 2022 | 11 | 2022-11-14T00:00:00Z | 2025-05-21T06:36:26Z | 2022-24658 | 0 | 0 | 09000064854aaaa3 | ||
| NRC-2022-0002-0008 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 700th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-10-14T00:00:00Z | 2022 | 10 | 2025-05-21T06:36:34Z | 2022-22352 | 0 | 0 | 0900006485406e38 | |||
| NRC-2022-0002-0007 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 699th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-09-19T00:00:00Z | 2022 | 9 | 2025-05-21T06:36:38Z | 2022-20232 | 0 | 0 | 0900006485327ed8 | |||
| NRC-2022-0002-0006 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 698th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-08-10T00:00:00Z | 2022 | 8 | 2025-05-21T06:36:51Z | 2022-17161 | 0 | 0 | 090000648522c21b | |||
| NRC-2022-0002-0005 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 697th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-06-16T00:00:00Z | 2022 | 6 | 2025-05-21T06:37:08Z | 2022-12968 | 0 | 0 | 090000648516d023 | |||
| NRC-2022-0002-0004 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 696th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-05-16T00:00:00Z | 2022 | 5 | 2025-05-21T06:37:15Z | 2022-10409 | 0 | 0 | 090000648507f0b8 | |||
| NRC-2022-0002-0003 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 695th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-04-15T00:00:00Z | 2022 | 4 | 2025-05-21T06:37:21Z | 2022-08098 | 0 | 0 | 090000648501cc48 | |||
| NRC-2022-0002-0002 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 694th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-03-15T00:00:00Z | 2022 | 3 | 2025-05-21T06:37:49Z | 2022-05365 | 0 | 0 | 0900006484fc7c8a | |||
| NRC-2022-0002-0001 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2021 Meetings NRC-2022-0002 | 693rd Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2022-02-14T00:00:00Z | 2022 | 2 | 2025-05-21T06:38:35Z | 2022-03120 | 0 | 0 | 0900006484f74cef |
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;