Skip to main content

NonEmployeeSourceLiteWithSchemaAttributes

Properties

NameTypeDescriptionNotes
idstrNon-Employee source id.[optional]
source_idstrSource Id associated with this non-employee source.[optional]
namestrSource name associated with this non-employee source.[optional]
descriptionstrSource description associated with this non-employee source.[optional]
schema_attributes[]NonEmployeeSchemaAttributeList of schema attributes associated with this non-employee source.[optional]
}

Example

from sailpoint.v2024.models.non_employee_source_lite_with_schema_attributes import NonEmployeeSourceLiteWithSchemaAttributes

non_employee_source_lite_with_schema_attributes = NonEmployeeSourceLiteWithSchemaAttributes(
id='a0303682-5e4a-44f7-bdc2-6ce6112549c1',
source_id='2c91808568c529c60168cca6f90c1313',
name='Retail',
description='Source description',
schema_attributes=[
sailpoint.v2024.models.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]