Skip to main content
Version: v0.0.3

Interface: PQ

Parsed HL7 v3 Physical Quantity. value is the parsed number (omitted when @value was non-numeric), raw is the verbatim @value string, and unit is the UCUM unit when present.

Example

import type { PQ } from "@cosyte/ccda";
const dose: PQ = { value: 81, raw: "81", unit: "mg" };

Properties

nullFlavor?

readonly optional nullFlavor?: string


raw?

readonly optional raw?: string


unit?

readonly optional unit?: string


value?

readonly optional value?: number