Skip to main content

Nonemployeeschemaattributebody

Properties

NameTypeDescriptionNotes
typestrType of the attribute. Only type 'TEXT' is supported for custom attributes.[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]
}

Example

from sailpoint.non_employee_lifecycle_management.models.nonemployeeschemaattributebody import Nonemployeeschemaattributebody

nonemployeeschemaattributebody = 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]