UNPKG

fhirtypes

Version:
10 lines (9 loc) 384 B
/** * @name IdentifierUse * @description Identifies the purpose for this identifier, if known. * @description usual | official | temp | secondary | old * @see <a href="https://hl7.org/fhir/R4/valueset-identifier-use.html">IdentifierUse</a> * @version R4 * @author Roberto Araneda Espinoza */ export type IdentifierUseType = 'usual' | 'official' | 'temp' | 'secondary' | 'old';