Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/NonEmployeeSchemaAttribute.md
2025-05-07 14:37:48 +00:00

2.1 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
v2024-non-employee-schema-attribute NonEmployeeSchemaAttribute NonEmployeeSchemaAttribute NonEmployeeSchemaAttribute powershellsdk
powershell
PowerShell
sdk
NonEmployeeSchemaAttribute
V2024NonEmployeeSchemaAttribute
/tools/sdk/powershell/v2024/models/non-employee-schema-attribute
SDK
Software Development Kit
NonEmployeeSchemaAttribute
V2024NonEmployeeSchemaAttribute

NonEmployeeSchemaAttribute

Properties

Name Type Description Notes
Id String Schema Attribute Id [optional]
System Boolean True if this schema attribute is mandatory on all non-employees sources. [optional] [default to $false]
Modified System.DateTime When the schema attribute was last modified. [optional]
Created System.DateTime When the schema attribute was created. [optional]
Type NonEmployeeSchemaAttributeType [required]
Label String Label displayed on the UI for this schema attribute. [required]
TechnicalName String The technical name of the attribute. Must be unique per source. [required]
HelpText String help text displayed by UI. [optional]
Placeholder String Hint text that fills UI box. [optional]
Required Boolean If true, the schema attribute is required for all non-employees in the source [optional] [default to $false]

Examples

  • Prepare the resource
$NonEmployeeSchemaAttribute = Initialize-V2024NonEmployeeSchemaAttribute  -Id ac110005-7156-1150-8171-5b292e3e0084 `
 -System true `
 -Modified 2019-08-23T18:52:59.162Z `
 -Created 2019-08-23T18:40:35.772Z `
 -Type null `
 -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
$NonEmployeeSchemaAttribute | ConvertTo-JSON

[Back to top]