Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/AttributeDefinitionSchema.md
2025-02-20 12:59:19 -05:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
attribute-definition-schema AttributeDefinitionSchema AttributeDefinitionSchema AttributeDefinitionSchema pythonsdk
python
Python
sdk
AttributeDefinitionSchema
AttributeDefinitionSchema
/tools/sdk/python/v3/models/attribute-definition-schema
SDK
Software Development Kit
AttributeDefinitionSchema
AttributeDefinitionSchema

AttributeDefinitionSchema

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

Properties

Name Type Description Notes
type Enum [ 'CONNECTOR_SCHEMA' ] The type of object being referenced [optional]
id str The object ID this reference applies to. [optional]
name str The human-readable display name of the object. [optional]
}

Example

from sailpoint.v3.models.attribute_definition_schema import AttributeDefinitionSchema

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

[Back to top]