Skip to main content
Version: v0.0.3

Interface: IVL_TS

Parsed HL7 v3 Interval of Point in Time. low/high are the bounds; value captures the degenerate case where the interval element itself carries a @value (a point expressed as an interval). nullFlavor is set when the element declared one.

Example

import type { IVL_TS } from "@cosyte/ccda";
const period: IVL_TS = { low: { raw: "20260101" }, high: { raw: "20261231" } };

Properties

high?

readonly optional high?: TS


low?

readonly optional low?: TS


nullFlavor?

readonly optional nullFlavor?: string


value?

readonly optional value?: TS