documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "NRC-2020-0141" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2020-0141-0497 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | Letter dated 3/2/2021 from American College of Radiology to Chairman Hanson | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73c0 | ||||
| NRC-2020-0141-0500 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | Letter dated 11/30/2020 from Ron Lattanze - Commission meeting with ACMUI Transcript and Analysis | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee7448 | ||||
| NRC-2020-0141-0492 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | Letter dated 6/25/2021 from Patient Advocacy Group Extravasations Group | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73bb | ||||
| NRC-2020-0141-0490 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | 9/2/2021 - Summary of ACMUI meeting | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73b9 | ||||
| NRC-2020-0141-0493 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | Letter dated 5/13/2021 from R. Lattanze to K. Williams | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73bc | ||||
| NRC-2020-0141-0494 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | E-mail dated 5/31/2021 from R. Lattanze regarding Extravasation Case Studies | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73bd | ||||
| NRC-2020-0141-0499 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | 9/2/2021 ACMUI Extravasation Subcommittee Meeting Final Transcript and Written Statements | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73c2 | ||||
| NRC-2020-0141-0491 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | 9/16/2021 ACMUI Extravasation Subcommittee FINAL Report on NRC Preliminary Evaluation | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73ba | ||||
| NRC-2020-0141-0496 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | Letter dated 7/122021 from Congresswoman Deborah Ross | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73bf | ||||
| NRC-2020-0141-0498 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | 07302021 Extravasation Subcommittee DRAFT Report on NRC Prelim Evaluation Combined | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73c1 | ||||
| NRC-2020-0141-0495 | NRC | Reporting Nuclear Medicine Injection Extravasations as Medical Events NRC-2020-0141 | Letter dated 10/8/2021 from M. Dennis to NRC Commissioners concerning ACMUI comments during NRC Commission meeting with ACMUI | Supporting & Related Material | 2021-12-22T00:00:00Z | 2021 | 12 | 2025-05-21T06:39:00Z | 0 | 0 | 0900006484ee73be |
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;