Skip to main content

SourceSchemasInner

Properties

NameTypeDescriptionNotes
typeEnum [ 'CONNECTOR_SCHEMA' ]Type of object being referenced.[optional]
idstrSchema ID.[optional]
namestrSchema's human-readable display name.[optional]
}

Example

from sailpoint.v3.models.source_schemas_inner import SourceSchemasInner

source_schemas_inner = SourceSchemasInner(
type='CONNECTOR_SCHEMA',
id='2c91808568c529c60168cca6f90c1777',
name='MySchema'
)

[Back to top]