{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Workflow", "title": "Workflow", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "standard": { "type": "boolean" }, "hidden": { "type": "boolean" }, "customStatuses": { "type": "array", "items": { "$ref": "#/components/schemas/WorkflowStatus" } } } }