Files
developer.sailpoint.com/static/api-specs/idn/v3/schemas/transforms/Conditional.yaml
2022-09-26 21:59:54 -04:00

30 lines
823 B
YAML

title: conditional
type: object
required:
- expression
- positiveCondition
- negativeCondition
properties:
expression:
type: string
description: >-
A comparison statement that follows the structure of `ValueA eq ValueB` where `ValueA` and `ValueB` are static strings or outputs of other transforms.
The `eq` operator is the only valid comparison
example: "ValueA eq ValueB"
positiveCondition:
type: string
description: >-
The output of the transform if the expression evalutes to true
example: "true"
negativeCondition:
type: string
description: >-
The output of the transform if the expression evalutes to false
example: "false"
requiresPeriodicRefresh:
$ref: './RequiresPeriodicRefresh.yaml'
input:
$ref: './input.yaml'