All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schema.switchconditions.eventcondition.json Maven / Gradle / Ivy

There is a newer version: 7.0.0-alpha2
Show newest version
{
  "type": "object",
  "javaType": "io.serverlessworkflow.api.switchconditions.EventCondition",
  "javaInterfaces": ["io.serverlessworkflow.api.interfaces.SwitchCondition"],
  "description": "Switch state data event condition",
  "properties": {
    "name": {
      "type": "string",
      "description": "Event condition name"
    },
    "eventRef": {
      "type" : "string",
      "description": "References an unique event name in the defined workflow events"
    },
    "eventDataFilter": {
      "description": "Callback event data filter definition",
      "$ref": "../filters/eventdatafilter.json"
    },
    "transition": {
      "$ref": "../transitions/transition.json",
      "description": "Next transition of the workflow if there is valid matches"
    },
    "end": {
      "$ref": "../end/end.json",
      "description": "Workflow end definition"
    }
  },
  "required": [
    "eventRef",
    "transition"
  ]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy