Skip to main content
Version: v0.0.3

Interface: CodedConcept

A coded triplet (PS3.16 §8, Table 8-1): Code Value (0008,0100), Coding Scheme Designator (0008,0102), Code Meaning (0008,0104). The canonical scheme OID is resolved only for the four standard designators; legacy SNOMED designators (SRT/SNM3/99SDM) deliberately resolve to undefined because their code values differ from SCT (CP-730).

Example

import type { CodedConcept } from "@cosyte/dicom";
const c: CodedConcept = {
codeValue: "C-B1003",
codingSchemeDesignator: "SCT",
codeMeaning: "Hounsfield unit",
schemeUid: "2.16.840.1.113883.6.96",
};

Properties

codeMeaning?

readonly optional codeMeaning?: string


codeValue?

readonly optional codeValue?: string


codingSchemeDesignator?

readonly optional codingSchemeDesignator?: string


schemeUid?

readonly optional schemeUid?: string