mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
30 lines
823 B
YAML
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'
|