/** * @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 IdentityAssuranceLevel * @version R4 * @author Roberto Araneda Espinoza */ export type IdentityAssuranceLevelType = 'level1' | 'level2' | 'level3' | 'level4';