Skip to main content

ValidateFilterOutputDto

Properties

NameTypeDescriptionNotes
IsValidBooleanWhen this field is true, the filter expression is valid against the input.[optional] [default to $false]
IsValidJSONPathBooleanWhen this field is true, the filter expression is using a valid JSON path.[optional] [default to $false]
IsPathExistBooleanWhen this field is true, the filter expression is using an existing path.[optional] [default to $false]

Examples

  • Prepare the resource
$ValidateFilterOutputDto = Initialize-PSSailpoint.V2024ValidateFilterOutputDto  -IsValid true `
-IsValidJSONPath true `
-IsPathExist true
  • Convert the resource to JSON
$ValidateFilterOutputDto | ConvertTo-JSON

[Back to top]