Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/FormDefinitionDynamicSchemaRequest.md
2025-01-28 13:29:29 -05:00

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

FormDefinitionDynamicSchemaRequest

Properties

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

Examples

  • Prepare the resource
$FormDefinitionDynamicSchemaRequest = Initialize-PSSailpoint.BetaFormDefinitionDynamicSchemaRequest  -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]