mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.6 KiB
1.6 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-non-employee-schema-attribute-body | NonEmployeeSchemaAttributeBody | NonEmployeeSchemaAttributeBody | NonEmployeeSchemaAttributeBody | pythonsdk |
|
/tools/sdk/python/beta/models/non-employee-schema-attribute-body |
|
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
from sailpoint.beta.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
)