Skip to main content

OutlierDetected

Properties

NameTypeDescriptionNotes
identityOutlierDetectedIdentity[required]
outlier_typeEnum [ 'LOW_SIMILARITY' ]Identity's outlier type.[required]
scorefloatDissimilarity score that determines whether the identity is an outlier, ranging from 0.0 to 1.0. The higher the score, the more likely the identity is an outlier.[required]
}

Example

from sailpoint.triggers.models.outlier_detected import OutlierDetected

outlier_detected = OutlierDetected(
identity=sailpoint.triggers.models.outlier_detected_identity.OutlierDetected_identity(
type = 'IDENTITY',
id = '2c7180a46faadee4016fb4e018c20642',
name = 'Michael Michaels', ),
outlier_type='LOW_SIMILARITY',
score=0.82
)

[Back to top]