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

1000 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-source-schemas-inner SourceSchemasInner SourceSchemasInner SourceSchemasInner pythonsdk
python
Python
sdk
SourceSchemasInner
V2024SourceSchemasInner
/tools/sdk/python/v2024/models/source-schemas-inner
SDK
Software Development Kit
SourceSchemasInner
V2024SourceSchemasInner

SourceSchemasInner

Properties

Name Type Description Notes
type Enum [ 'CONNECTOR_SCHEMA' ] Type of object being referenced. [optional]
id str Schema ID. [optional]
name str Schema's human-readable display name. [optional]
}

Example

from sailpoint.v2024.models.source_schemas_inner import SourceSchemasInner

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

[Back to top]