Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the event handler |
| event | string | Event identifier in the format source:sink:subject (e.g., conductor:workflow_completed:myWorkflow) |
| condition | string | Condition expression to evaluate |
| actions | array | List of actions to perform when the event is received |
| active | boolean | Whether the event handler is active |
| evaluatorType | string | Type of evaluator for the condition |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EventHandler",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the event handler"
},
"event": {
"type": "string",
"description": "Event identifier in the format source:sink:subject (e.g., conductor:workflow_completed:myWorkflow)"
},
"condition": {
"type": "string",
"description": "Condition expression to evaluate"
},
"actions": {
"type": "array",
"description": "List of actions to perform when the event is received"
},
"active": {
"type": "boolean",
"description": "Whether the event handler is active"
},
"evaluatorType": {
"type": "string",
"description": "Type of evaluator for the condition"
}
}
}