Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/NonEmployeeSchemaAttribute.md
2025-04-01 09:23:12 -04:00

2.0 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
v2025-non-employee-schema-attribute NonEmployeeSchemaAttribute NonEmployeeSchemaAttribute NonEmployeeSchemaAttribute pythonsdk
python
Python
sdk
NonEmployeeSchemaAttribute
V2025NonEmployeeSchemaAttribute
/tools/sdk/python/v2025/models/non-employee-schema-attribute
SDK
Software Development Kit
NonEmployeeSchemaAttribute
V2025NonEmployeeSchemaAttribute

NonEmployeeSchemaAttribute

Properties

Name Type Description Notes
id str Schema Attribute Id [optional]
system bool True if this schema attribute is mandatory on all non-employees sources. [optional] [default to False]
modified datetime When the schema attribute was last modified. [optional]
created datetime When the schema attribute was created. [optional]
type NonEmployeeSchemaAttributeType [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] [default to False]
}

Example

from sailpoint.v2025.models.non_employee_schema_attribute import NonEmployeeSchemaAttribute

non_employee_schema_attribute = NonEmployeeSchemaAttribute(
id='ac110005-7156-1150-8171-5b292e3e0084',
system=True,
modified='2019-08-23T18:52:59.162Z',
created='2019-08-23T18:40:35.772Z',
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]