starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: source-schemas-inner
title: SourceSchemasInner
pagination_label: SourceSchemasInner
sidebar_label: SourceSchemasInner
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SourceSchemasInner', 'SourceSchemasInner']
slug: /tools/sdk/python/v3/models/source-schemas-inner
tags: ['SDK', 'Software Development Kit', 'SourceSchemasInner', 'SourceSchemasInner']
---
# 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
```python
from sailpoint.v3.models.source_schemas_inner import SourceSchemasInner
source_schemas_inner = SourceSchemasInner(
type='CONNECTOR_SCHEMA',
id='2c91808568c529c60168cca6f90c1777',
name='MySchema'
)
```
[[Back to top]](#)