add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
id: v2025-form-definition-dynamic-schema-request
title: FormDefinitionDynamicSchemaRequest
pagination_label: FormDefinitionDynamicSchemaRequest
sidebar_label: FormDefinitionDynamicSchemaRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FormDefinitionDynamicSchemaRequest', 'V2025FormDefinitionDynamicSchemaRequest']
slug: /tools/sdk/powershell/v2025/models/form-definition-dynamic-schema-request
tags: ['SDK', 'Software Development Kit', 'FormDefinitionDynamicSchemaRequest', 'V2025FormDefinitionDynamicSchemaRequest']
---
# FormDefinitionDynamicSchemaRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Attributes** | [**FormDefinitionDynamicSchemaRequestAttributes**](form-definition-dynamic-schema-request-attributes) | | [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
```powershell
$FormDefinitionDynamicSchemaRequest = Initialize-PSSailpoint.V2025FormDefinitionDynamicSchemaRequest -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]](#)