Atlassian · Schema

WorkflowScope

The scope of the workflow.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
project object
type string The scope of the workflow. `GLOBAL` for company-managed projects and `PROJECT` for team-managed projects.
View JSON Schema on GitHub

JSON Schema

atlassian-workflowscope-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowScope",
  "title": "WorkflowScope",
  "additionalProperties": false,
  "description": "The scope of the workflow.",
  "properties": {
    "project": {
      "$ref": "#/components/schemas/ProjectId"
    },
    "type": {
      "description": "The scope of the workflow. `GLOBAL` for company-managed projects and `PROJECT` for team-managed projects.",
      "enum": [
        "PROJECT",
        "GLOBAL"
      ],
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}