Validatefilteroutputdto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| is_valid | bool | When this field is true, the filter expression is valid against the input. | [optional] [default to False] |
| is_valid_json_path | bool | When this field is true, the filter expression is using a valid JSON path. | [optional] [default to False] |
| is_path_exist | bool | When this field is true, the filter expression is using an existing path. | [optional] [default to False] |
| } |
Example
from sailpoint.triggers.models.validatefilteroutputdto import Validatefilteroutputdto
validatefilteroutputdto = Validatefilteroutputdto(
is_valid=True,
is_valid_json_path=True,
is_path_exist=True
)