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

28 lines
817 B
YAML

type: object
description: The map of steps that the workflow will execute.
properties:
start:
type: string
description: The name of the starting step.
example: "Send Email Test"
steps:
type: object
description: One or more step objects that comprise this workflow. Please see the Workflow documentation to see the JSON schema for each step type.
additionalProperties: true
example: {
"Send Email": {
"actionId": "sp:send-email",
"attributes": {
"body": "This is a test",
"from": "sailpoint@sailpoint.com",
"recipientId.$": "$.identity.id",
"subject": "test"
},
"nextStep": "success",
"selectResult": null,
"type": "action"
},
"success": {
"type": "success"
}
}