{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowCreateOrUpdateCommand", "title": "WorkflowCreateOrUpdateCommand", "type": "object", "properties": { "triggers": { "type": "array", "items": { "$ref": "#/components/schemas/WorkflowTrigger" } }, "name": { "type": "string" }, "isEnabled": { "type": "boolean" }, "description": { "type": "string" }, "actionDag": { "type": "object" } } }