Atlassian · Schema

WorkflowSchemeAssociations

A workflow scheme along with a list of projects that use it.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
projectIds array The list of projects that use the workflow scheme.
workflowScheme object The workflow scheme.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowschemeassociations-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowSchemeAssociations",
  "title": "WorkflowSchemeAssociations",
  "additionalProperties": false,
  "description": "A workflow scheme along with a list of projects that use it.",
  "properties": {
    "projectIds": {
      "description": "The list of projects that use the workflow scheme.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "workflowScheme": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkflowScheme"
        }
      ],
      "description": "The workflow scheme."
    }
  },
  "required": [
    "projectIds",
    "workflowScheme"
  ],
  "type": "object"
}