Skip to main content

NonEmployeeSchemaAttribute

Properties

NameTypeDescriptionNotes
idstrSchema Attribute Id[optional]
systemboolTrue if this schema attribute is mandatory on all non-employees sources.[optional] [default to False]
modifieddatetimeWhen the schema attribute was last modified.[optional]
createddatetimeWhen the schema attribute was created.[optional]
typeNonEmployeeSchemaAttributeType[required]
labelstrLabel displayed on the UI for this schema attribute.[required]
technical_namestrThe technical name of the attribute. Must be unique per source.[required]
help_textstrhelp text displayed by UI.[optional]
placeholderstrHint text that fills UI box.[optional]
requiredboolIf true, the schema attribute is required for all non-employees in the source[optional] [default to False]
}

Example

from sailpoint.beta.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]