Atlassian · Schema

WorkflowCreateResponse

Details of the created workflows and statuses.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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