Skip to main content

AttributeDefinitionSchema

A reference to the schema on the source to the attribute values map to.

Properties

NameTypeDescriptionNotes
typeEnum [ 'CONNECTOR_SCHEMA' ]The type of object being referenced[optional]
idstrThe object ID this reference applies to.[optional]
namestrThe human-readable display name of the object.[optional]
}

Example

from sailpoint.v2024.models.attribute_definition_schema import AttributeDefinitionSchema

attribute_definition_schema = AttributeDefinitionSchema(
type='CONNECTOR_SCHEMA',
id='2c91808568c529c60168cca6f90c1313',
name='group'
)

[Back to top]