documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NRC-2018-0054" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, 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-2018-0054-0009 | NRC | Advisory Committee on Reactor Safeguards Subcommittee on NuScale NRC-2018-0054 | Meeting of the Advisory Committee on Reactor Safeguards (ACRS) Subcommittee on NuScale | Notice | 2018-12-19T00:00:00Z | 2018 | 12 | 2025-05-21T07:07:08Z | 2018-27418 | 0 | 0 | 09000064839b25d8 | |||
| NRC-2018-0054-0008 | NRC | Advisory Committee on Reactor Safeguards Subcommittee on NuScale NRC-2018-0054 | Meeting of the Advisory Committee on Reactor Safeguards (ACRS) Subcommittee on NuScale | Notice | 2018-08-22T00:00:00Z | 2018 | 8 | 2025-05-21T07:08:22Z | 2018-18066 | 0 | 0 | 090000648364297c | |||
| NRC-2018-0054-0006 | NRC | Advisory Committee on Reactor Safeguards Subcommittee on NuScale NRC-2018-0054 | Meeting of the Advisory Committee on Reactor Safeguards (ACRS) Subcommittee on NuScale | Notice | 2018-08-13T00:00:00Z | 2018 | 8 | 2025-05-21T07:08:40Z | 2018-17329 | 0 | 0 | 090000648361299f | |||
| NRC-2018-0054-0007 | NRC | Advisory Committee on Reactor Safeguards Subcommittee on NuScale NRC-2018-0054 | Meeting of the Advisory Committee on Reactor Safeguards (ACRS) Subcommittee; on NuScale | Notice | 2018-08-13T00:00:00Z | 2018 | 8 | 2025-05-21T07:08:40Z | 2018-17232 | 0 | 0 | 0900006483612f6b | |||
| NRC-2018-0054-0005 | NRC | Advisory Committee on Reactor Safeguards Subcommittee on NuScale NRC-2018-0054 | Advisory Committee on Reactor Safeguards (ACRS) Meeting of the ACRS Subcommittee on NuScale; Notice of Meeting | Notice | 2018-06-05T00:00:00Z | 2018 | 6 | 2025-05-21T07:10:59Z | 2018-12024 | 0 | 0 | 090000648333c408 | |||
| NRC-2018-0054-0004 | NRC | Advisory Committee on Reactor Safeguards Subcommittee on NuScale NRC-2018-0054 | Advisory Committee on Reactor Safeguards (ACRS) Meeting of the ACRS Subcommittee on Nuscale; Notice of Meeting | Notice | 2018-05-11T00:00:00Z | 2018 | 5 | 2025-05-21T07:11:15Z | 2018-09997 | 0 | 0 | 0900006483258c47 | |||
| NRC-2018-0054-0002 | NRC | Advisory Committee on Reactor Safeguards Subcommittee on NuScale NRC-2018-0054 | Advisory Committee on Reactor Safeguards (ACRS): Meeting of the ACRS Subcommittee on NuScale | Notice | 2018-04-13T00:00:00Z | 2018 | 4 | 2025-05-21T07:11:28Z | 2018-07704 | 0 | 0 | 090000648313a0e8 | |||
| NRC-2018-0054-0001 | NRC | Advisory Committee on Reactor Safeguards Subcommittee on NuScale NRC-2018-0054 | Advisory Committee on Reactor Safeguards Subcommittee on NuScale; Meeting | Notice | 2018-03-12T00:00:00Z | 2018 | 3 | 2025-05-21T07:11:53Z | 2018-04837 | 0 | 0 | 0900006482ffd4a6 |
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;