{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowTransition", "title": "WorkflowTransition", "additionalProperties": false, "description": "A workflow transition.", "properties": { "id": { "description": "The transition ID.", "format": "int32", "type": "integer" }, "name": { "description": "The transition name.", "type": "string" } }, "required": [ "id", "name" ], "type": "object" }