{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Workflow", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "description": "Unique identifier for the workflow" }, "name": { "type": "string", "description": "Workflow name" }, "description": { "type": "string", "description": "Workflow description" }, "trigger": { "type": "string", "description": "Workflow trigger type" }, "status": { "type": "string", "enum": [ "active", "inactive", "error" ], "description": "Workflow status" } } }