Atlassian · Schema

StatusScope

The scope of the status.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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