Skip to main content

Validatefilteroutputdto

Properties

NameTypeDescriptionNotes
is_validboolWhen this field is true, the filter expression is valid against the input.[optional] [default to False]
is_valid_json_pathboolWhen this field is true, the filter expression is using a valid JSON path.[optional] [default to False]
is_path_existboolWhen 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
)

[Back to top]