Atlassian · Schema

WorkflowReadResponse

Details of workflows and related statuses.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
statuses array List of statuses.
workflows array List of workflows.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowreadresponse-schema.json Raw ↑
{
  "$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"
}