/**
 * @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';
