UNPKG

fhirtypes

Version:
10 lines (9 loc) 407 B
/** * @name CompositionStatus * @description The workflow/clinical status of the composition. * @description preliminary | final | amended | entered-in-error * @see <a href="https://hl7.org/fhir/R4/valueset-composition-status.html">CompositionStatus</a> * @version R4 * @author Roberto Araneda Espinoza */ export type CompositionStatusType = 'preliminary' | 'final' | 'amended' | 'entered-in-error';