Interface: BuildCcdaVital
One member reading of a Vital Signs panel, a Vital Sign Observation. code is
the LOINC vital (e.g. 8480-6 systolic BP); quantity is the UCUM-checked
PQ reading (required, a vital sign without a value is not emitted).
Example
import type { BuildCcdaVital } from "@cosyte/ccda";
const systolic: BuildCcdaVital = {
code: { code: "8480-6", displayName: "Systolic blood pressure" },
quantity: { value: 120, unit: "mm[Hg]" },
};
Properties
code
readonlycode:BuildCode
The LOINC vital-sign code.
effectiveTime?
readonlyoptionaleffectiveTime?:string
The reading time as an HL7 date string, optional.
interpretation?
readonlyoptionalinterpretation?:BuildCode
The H/L/N interpretation (HL7 ObservationInterpretation by default), optional.
quantity
readonlyquantity:BuildQuantity
The reading as a UCUM PQ (required).