UNPKG

fhirtypes

Version:
10 lines (9 loc) 400 B
/** * @name CarePlanIntent * @description Codes indicating the degree of authority/intentionality associated with a care plan. * @description proposal | plan | order | option * @see <a href="https://hl7.org/fhir/R4/valueset-care-plan-intent.html">CarePlanIntent</a> * @version R4 * @author Roberto Araneda Espinoza */ export type CarePlanIntentType = 'proposal' | 'plan' | 'order' | 'option';