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