add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
id: v2025-non-employee-schema-attribute-body
title: NonEmployeeSchemaAttributeBody
pagination_label: NonEmployeeSchemaAttributeBody
sidebar_label: NonEmployeeSchemaAttributeBody
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'NonEmployeeSchemaAttributeBody', 'V2025NonEmployeeSchemaAttributeBody']
slug: /tools/sdk/python/v2025/models/non-employee-schema-attribute-body
tags: ['SDK', 'Software Development Kit', 'NonEmployeeSchemaAttributeBody', 'V2025NonEmployeeSchemaAttributeBody']
---
# NonEmployeeSchemaAttributeBody
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **str** | Type of the attribute. Only type 'TEXT' is supported for custom attributes. | [required]
**label** | **str** | Label displayed on the UI for this schema attribute. | [required]
**technical_name** | **str** | The technical name of the attribute. Must be unique per source. | [required]
**help_text** | **str** | help text displayed by UI. | [optional]
**placeholder** | **str** | Hint text that fills UI box. | [optional]
**required** | **bool** | If true, the schema attribute is required for all non-employees in the source | [optional]
}
## Example
```python
from sailpoint.v2025.models.non_employee_schema_attribute_body import NonEmployeeSchemaAttributeBody
non_employee_schema_attribute_body = NonEmployeeSchemaAttributeBody(
type='TEXT',
label='Account Name',
technical_name='account.name',
help_text='The unique identifier for the account',
placeholder='Enter a unique user name for this account.',
required=True
)
```
[[Back to top]](#)