Details of workflows and related statuses.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkflowReadResponse", "title": "WorkflowReadResponse", "additionalProperties": false, "description": "Details of workflows and related statuses.", "properties": { "statuses": { "description": "List of statuses.", "items": { "$ref": "#/components/schemas/JiraWorkflowStatus" }, "type": "array", "uniqueItems": true }, "workflows": { "description": "List of workflows.", "items": { "$ref": "#/components/schemas/JiraWorkflow" }, "type": "array", "uniqueItems": true } }, "type": "object" }