{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowUpdateResponse", "title": "WorkflowUpdateResponse", "additionalProperties": false, "properties": { "statuses": { "description": "List of updated statuses.", "items": { "$ref": "#/components/schemas/JiraWorkflowStatus" }, "type": "array", "uniqueItems": true }, "taskId": { "description": "If there is a [asynchronous task](#async-operations) operation, as a result of this update.", "nullable": true, "type": "string" }, "workflows": { "description": "List of updated workflows.", "items": { "$ref": "#/components/schemas/JiraWorkflow" }, "type": "array", "uniqueItems": true } }, "type": "object" }