Atlassian · Schema

ContainerOfWorkflowSchemeAssociations

A container for a list of workflow schemes together with the projects they are associated with.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
values array A list of workflow schemes together with projects they are associated with.
View JSON Schema on GitHub

JSON Schema

atlassian-containerofworkflowschemeassociations-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContainerOfWorkflowSchemeAssociations",
  "title": "ContainerOfWorkflowSchemeAssociations",
  "additionalProperties": false,
  "description": "A container for a list of workflow schemes together with the projects they are associated with.",
  "properties": {
    "values": {
      "description": "A list of workflow schemes together with projects they are associated with.",
      "items": {
        "$ref": "#/components/schemas/WorkflowSchemeAssociations"
      },
      "type": "array"
    }
  },
  "required": [
    "values"
  ],
  "type": "object"
}