{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowId", "title": "WorkflowId", "additionalProperties": false, "description": "Properties that identify a workflow.", "properties": { "draft": { "description": "Whether the workflow is in the draft state.", "type": "boolean" }, "name": { "description": "The name of the workflow.", "type": "string" } }, "required": [ "draft", "name" ], "type": "object" }