{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowTrigger", "title": "WorkflowTrigger", "additionalProperties": false, "description": "The trigger configuration associated with a workflow.", "properties": { "id": { "description": "The ID of the trigger.", "type": "string" }, "parameters": { "additionalProperties": { "description": "The parameters of the trigger.", "type": "string" }, "description": "The parameters of the trigger.", "type": "object" }, "ruleKey": { "description": "The rule key of the trigger.", "type": "string" } }, "required": [ "parameters", "ruleKey" ], "type": "object" }