Skip to main content
Version: v0.0.3

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

readonly code: BuildCode

The LOINC vital-sign code.


effectiveTime?

readonly optional effectiveTime?: string

The reading time as an HL7 date string, optional.


interpretation?

readonly optional interpretation?: BuildCode

The H/L/N interpretation (HL7 ObservationInterpretation by default), optional.


quantity

readonly quantity: BuildQuantity

The reading as a UCUM PQ (required).