schema.functions.subflowref.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serverlessworkflow-api Show documentation
Show all versions of serverlessworkflow-api Show documentation
Java SDK for Serverless Workflow Specification
{
"type": "object",
"javaType": "io.serverlessworkflow.api.functions.SubFlowRef",
"properties": {
"workflowId": {
"type": "string",
"description": "Unique id of the sub-workflow to be invoked"
},
"version": {
"type": "string",
"description": "Version of the sub-workflow to be invoked",
"minLength": 1
},
"onParentComplete": {
"type": "string",
"enum": [
"continue",
"terminate"
],
"description": "If invoke is 'async', specifies how subflow execution should behave when parent workflow completes. Default is 'terminate'",
"default": "terminate"
},
"invoke": {
"type": "string",
"enum": [
"sync",
"async"
],
"description": "Specifies if the function should be invoked sync or async. Default is sync.",
"default": "sync"
}
},
"required": [
"workflowId"
]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy