/** * @name CompositionStatus * @description The workflow/clinical status of the composition. * @description preliminary | final | amended | entered-in-error * @see CompositionStatus * @version R4 * @author Roberto Araneda Espinoza */ export type CompositionStatusType = 'preliminary' | 'final' | 'amended' | 'entered-in-error';