schema.branches.branch.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.branches.Branch",
"description": "Branch Definition",
"properties": {
"name": {
"type": "string",
"description": "Branch name"
},
"actions": {
"type": "array",
"description": "Actions to be executed in this branch",
"items": {
"type": "object",
"$ref": "../actions/action.json"
}
},
"timeouts": {
"$ref": "../timeouts/timeoutsdef.json"
}
},
"oneOf": [
{
"required": [
"name",
"actions"
]
},
{
"required": [
"name"
]
}
]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy