Skip to main content
Version: v0.0.3

Interface: CD

Parsed HL7 v3 coded value. code + codeSystem form the bound concept; displayName is the human label; originalText is the source text the code was derived from; translation holds alternative codings (e.g. a local code alongside a LOINC/SNOMED standard).

Example

import type { CD } from "@cosyte/ccda";
const sectionCode: CD = {
code: "48765-2",
codeSystem: "2.16.840.1.113883.6.1",
displayName: "Allergies",
};

Properties

code?

readonly optional code?: string


codeSystem?

readonly optional codeSystem?: string


codeSystemName?

readonly optional codeSystemName?: string


displayName?

readonly optional displayName?: string


nullFlavor?

readonly optional nullFlavor?: string


originalText?

readonly optional originalText?: string


translation?

readonly optional translation?: readonly CD[]