Skip to main content

NonEmployeeSchemaAttributeBody

Properties

NameTypeDescriptionNotes
TypeStringType of the attribute. Only type 'TEXT' is supported for custom attributes.[required]
LabelStringLabel displayed on the UI for this schema attribute.[required]
TechnicalNameStringThe technical name of the attribute. Must be unique per source.[required]
HelpTextStringhelp text displayed by UI.[optional]
PlaceholderStringHint text that fills UI box.[optional]
RequiredBooleanIf true, the schema attribute is required for all non-employees in the source[optional]

Examples

  • Prepare the resource
$NonEmployeeSchemaAttributeBody = Initialize-PSSailpoint.BetaNonEmployeeSchemaAttributeBody  -Type TEXT `
-Label Account Name `
-TechnicalName account.name `
-HelpText The unique identifier for the account `
-Placeholder Enter a unique user name for this account. `
-Required true
  • Convert the resource to JSON
$NonEmployeeSchemaAttributeBody | ConvertTo-JSON

[Back to top]