Skip to main content

FormDefinitionResponse

Properties

NameTypeDescriptionNotes
IdStringUnique guid identifying the form definition.[optional]
NameStringName of the form definition.[optional]
DescriptionStringForm definition's description.[optional]
OwnerFormOwner[optional]
UsedBy[]FormUsedByList of objects using the form definition. Whenever a system uses a form, the API reaches out to the form service to record that the system is currently using it.[optional]
FormInput[]FormDefinitionInputList of form inputs required to create a form-instance object.[optional]
FormElements[]FormElementList of nested form elements.[optional]
FormConditions[]FormConditionConditional logic that can dynamically modify the form as the recipient is interacting with it.[optional]
CreatedSystem.DateTimeCreated is the date the form definition was created[optional]
ModifiedSystem.DateTimeModified is the last date the form definition was modified[optional]

Examples

  • Prepare the resource
$FormDefinitionResponse = Initialize-PSSailpoint.BetaFormDefinitionResponse  -Id 00000000-0000-0000-0000-000000000000 `
-Name My form `
-Description My form description `
-Owner null `
-UsedBy null `
-FormInput null `
-FormElements null `
-FormConditions null `
-Created 2023-07-12T20:14:57.744860Z `
-Modified 2023-07-12T20:14:57.744860Z
  • Convert the resource to JSON
$FormDefinitionResponse | ConvertTo-JSON

[Back to top]