/**
 * @name IdentityAssuranceLevel
 * @description The level of confidence that this link represents the same actual person, based on NIST Authentication Levels.
 * @description level1 | level2 | level3 | level4
 * @see <a href="https://hl7.org/fhir/R4/valueset-identity-assuranceLevel.html">IdentityAssuranceLevel</a>
 * @version R4
 * @author Roberto Araneda Espinoza
 */
export type IdentityAssuranceLevelType = 'level1' | 'level2' | 'level3' | 'level4';
