adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,43 @@
---
id: form-definition-dynamic-schema-request
title: FormDefinitionDynamicSchemaRequest
pagination_label: FormDefinitionDynamicSchemaRequest
sidebar_label: FormDefinitionDynamicSchemaRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FormDefinitionDynamicSchemaRequest']
slug: /tools/sdk/powershell/v2024/models/form-definition-dynamic-schema-request
tags: ['SDK', 'Software Development Kit', 'FormDefinitionDynamicSchemaRequest']
---
# FormDefinitionDynamicSchemaRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Attributes** | Pointer to [**FormDefinitionDynamicSchemaRequestAttributes**](form-definition-dynamic-schema-request-attributes) | | [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
```powershell
$FormDefinitionDynamicSchemaRequest = Initialize-PSSailpoint.V2024FormDefinitionDynamicSchemaRequest -Attributes null `
-Description A description `
-Id 00000000-0000-0000-0000-000000000000 `
-Type action `
-VersionNumber 1
```
- Convert the resource to JSON
```powershell
$FormDefinitionDynamicSchemaRequest | ConvertTo-JSON
```
[[Back to top]](#)