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?
readonlyoptionalcode?:string
codeSystem?
readonlyoptionalcodeSystem?:string
codeSystemName?
readonlyoptionalcodeSystemName?:string
displayName?
readonlyoptionaldisplayName?:string
nullFlavor?
readonlyoptionalnullFlavor?:string
originalText?
readonlyoptionaloriginalText?:string
translation?
readonlyoptionaltranslation?: readonlyCD[]