Skip to main content

OutlierContributingFeature

Properties

NameTypeDescriptionNotes
idstrContributing feature id[optional]
namestrThe name of the feature[optional]
value_typeEnum [ 'INTEGER', 'FLOAT' ]The data type of the value field[optional]
valueOutlierContributingFeatureValue[optional]
importancefloatThe importance of the feature. This can also be a negative value[optional]
display_namestrThe (translated if header is passed) displayName for the feature[optional]
descriptionstrThe (translated if header is passed) description for the feature[optional]
translation_messagesOutlierFeatureTranslation[optional]
}

Example

from sailpoint.beta.models.outlier_contributing_feature import OutlierContributingFeature

outlier_contributing_feature = OutlierContributingFeature(
id='66e38828-5017-47af-92ff-9844871352c5',
name='entitlement_count',
value_type='INTEGER',
value=0.92,
importance=-0.15,
display_name='Number of entitlements',
description='The total number of entitlements belonging to an identity',
translation_messages=sailpoint.beta.models.outlier_feature_translation.OutlierFeatureTranslation(
display_name = sailpoint.beta.models.translation_message.TranslationMessage(
key = 'recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH',
values = [75, department], ),
description = sailpoint.beta.models.translation_message.TranslationMessage(
key = 'recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH',
values = [75, department], ), )
)

[Back to top]