{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowSchemeIdName", "title": "WorkflowSchemeIdName", "additionalProperties": false, "description": "The ID and the name of the workflow scheme.", "properties": { "id": { "description": "The ID of the workflow scheme.", "type": "string" }, "name": { "description": "The name of the workflow scheme.", "type": "string" } }, "required": [ "id", "name" ], "type": "object" }