schema.events.onevents.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.events.OnEvents",
"description": "Actions to be performed on Events arrival",
"properties": {
"eventRefs": {
"type": "array",
"description": "References one or more unique event names in the defined workflow events",
"items": {
"type": "object",
"existingJavaType": "java.lang.String"
}
},
"actionMode": {
"type": "string",
"enum": [
"sequential",
"parallel"
],
"description": "Specifies how actions are to be performed (in sequence of parallel)",
"default": "sequential"
},
"actions": {
"type": "array",
"description": "Actions to be performed.",
"items": {
"type": "object",
"$ref": "../actions/action.json"
}
},
"eventDataFilter": {
"$ref": "../filters/eventdatafilter.json"
}
},
"required": [
"eventRefs",
"actions"
]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy