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.v2024.models.validate_filter_output_dto import ValidateFilterOutputDto

validate_filter_output_dto = ValidateFilterOutputDto(
is_valid=True,
is_valid_json_path=True,
is_path_exist=True
)

[Back to top]