documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NRC-2023-0002" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_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-0002-0010 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 712th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2023-11-27T00:00:00Z | 2023 | 11 | 2025-05-21T06:30:56Z | 2023-26034 | 0 | 0 | 09000064862b7164 | |||
| NRC-2023-0002-0009 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 711th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2023-11-13T00:00:00Z | 2023 | 11 | 2025-05-21T06:31:00Z | 2023-24919 | 0 | 0 | 090000648625ba97 | |||
| NRC-2023-0002-0008 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 710th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2023-10-13T00:00:00Z | 2023 | 10 | 2025-05-21T06:31:49Z | 2023-22673 | 0 | 0 | 09000064860cde34 | |||
| NRC-2023-0002-0007 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 709th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2023-09-18T00:00:00Z | 2023 | 9 | 2025-05-21T06:31:56Z | 2023-20108 | 0 | 0 | 0900006485fc146c | |||
| NRC-2023-0002-0006 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 708th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2023-08-17T00:00:00Z | 2023 | 8 | 2025-05-21T06:33:06Z | 2023-17707 | 0 | 0 | 0900006485e7511a | |||
| NRC-2023-0002-0005 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 707th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2023-06-21T00:00:00Z | 2023 | 6 | 2025-05-21T06:34:20Z | 2023-13114 | 0 | 0 | 0900006485b91651 | |||
| NRC-2023-0002-0004 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 706th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2023-05-12T00:00:00Z | 2023 | 5 | 2025-05-21T06:34:57Z | 2023-10169 | 0 | 0 | 09000064859fa445 | |||
| NRC-2023-0002-0003 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 705th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2023-04-18T00:00:00Z | 2023 | 4 | 2025-05-21T06:35:19Z | 2023-08090 | 0 | 0 | 09000064859562c7 | |||
| NRC-2023-0002-0002 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 704th Meeting of the Advisory Committee on Reactor Safeguards (ACRS) | Notice | 2023-03-09T00:00:00Z | 2023 | 3 | 2025-05-21T06:35:49Z | 2023-04847 | 0 | 0 | 0900006485781de7 | |||
| NRC-2023-0002-0001 | NRC | ACRS Committee on Reactor Safeguards; Procedures for CY 2023 NRC-2023-0002 | 703rd Meeting of the Advisory Committee on Reactor Safeguards | Notice | 2023-02-14T00:00:00Z | 2023 | 2 | 2025-05-21T06:36:00Z | 2023-03051 | 0 | 0 | 09000064856930b5 |
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;