{ "$id": "https://raw.githubusercontent.com/api-evangelist/cobalt/refs/heads/main/json-schema/workflow.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Workflow", "description": "A public workflow within the Cobalt embedded integration platform.", "type": "object", "properties": { "_id": { "type": "string", "description": "Workflow ID." }, "name": { "type": "string", "description": "Workflow name." }, "description": { "type": "string", "description": "Workflow description." }, "nodes": { "type": "array", "description": "Workflow nodes.", "items": { "type": "object", "properties": { "type": { "type": "string" }, "config": { "type": "object" } } } }, "created_at": { "type": "string", "format": "date-time", "description": "Creation timestamp." }, "updated_at": { "type": "string", "format": "date-time", "description": "Last update timestamp." } } }