Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/FormDefinitionDynamicSchemaRequest.md
2025-02-03 22:09:17 +00:00

1.6 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-form-definition-dynamic-schema-request FormDefinitionDynamicSchemaRequest FormDefinitionDynamicSchemaRequest FormDefinitionDynamicSchemaRequest powershellsdk
powershell
PowerShell
sdk
FormDefinitionDynamicSchemaRequest
V2024FormDefinitionDynamicSchemaRequest
/tools/sdk/powershell/v2024/models/form-definition-dynamic-schema-request
SDK
Software Development Kit
FormDefinitionDynamicSchemaRequest
V2024FormDefinitionDynamicSchemaRequest

FormDefinitionDynamicSchemaRequest

Properties

Name Type Description Notes
Attributes FormDefinitionDynamicSchemaRequestAttributes [optional]
Description String Description is the form definition dynamic schema description text [optional]
Id String ID is a unique identifier [optional]
Type String Type is the form definition dynamic schema type [optional]
VersionNumber Int64 VersionNumber is the form definition dynamic schema version number [optional]

Examples

  • Prepare the resource
$FormDefinitionDynamicSchemaRequest = Initialize-PSSailpoint.V2024FormDefinitionDynamicSchemaRequest  -Attributes null `
 -Description A description `
 -Id 00000000-0000-0000-0000-000000000000 `
 -Type action `
 -VersionNumber 1
  • Convert the resource to JSON
$FormDefinitionDynamicSchemaRequest | ConvertTo-JSON

[Back to top]