mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.7 KiB
1.7 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-body | NonEmployeeSchemaAttributeBody | NonEmployeeSchemaAttributeBody | NonEmployeeSchemaAttributeBody | powershellsdk |
|
/tools/sdk/powershell/v2024/models/non-employee-schema-attribute-body |
|
NonEmployeeSchemaAttributeBody
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Type | String | Type of the attribute. Only type 'TEXT' is supported for custom attributes. | [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] |
Examples
- Prepare the resource
$NonEmployeeSchemaAttributeBody = Initialize-PSSailpoint.V2024NonEmployeeSchemaAttributeBody -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