Type Alias: PlannedOrderMood
PlannedOrderMood =
"INT"|"RQO"|"PRMS"|"PRP"
The planned @moodCode for the medication / supply / observation kinds.
The base CDA R2 mood domains for these elements, x_DocumentSubstanceMood
(substanceAdministration/supply) and x_ActMoodDocumentObservation
(observation), exclude the appointment moods (APT/ARQ), so those are
not representable here (you cannot "appoint" a drug order or a lab). EVN is
likewise excluded, the plan is future/ordered, never performed.
Example
import type { PlannedOrderMood } from "@cosyte/ccda";
const order: PlannedOrderMood = "RQO";