Atlassian · Schema

WorkflowMetadataAndIssueTypeRestModel

The workflow metadata and issue type IDs which use this workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypeIds array The list of issue type IDs for the mapping.
workflow object
View JSON Schema on GitHub

JSON Schema

atlassian-workflowmetadataandissuetyperestmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowMetadataAndIssueTypeRestModel",
  "title": "WorkflowMetadataAndIssueTypeRestModel",
  "additionalProperties": false,
  "description": "The workflow metadata and issue type IDs which use this workflow.",
  "properties": {
    "issueTypeIds": {
      "description": "The list of issue type IDs for the mapping.",
      "items": {
        "description": "The list of issue type IDs for the mapping.",
        "type": "string"
      },
      "type": "array"
    },
    "workflow": {
      "$ref": "#/components/schemas/WorkflowMetadataRestModel"
    }
  },
  "required": [
    "issueTypeIds",
    "workflow"
  ],
  "type": "object"
}