Atlassian · Schema

Scope

The projects the item is associated with. Indicated for items associated with [next-gen projects](https://confluence.atlassian.com/x/loMyO).

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
project object The project the item has scope in.
type string The type of scope.
View JSON Schema on GitHub

JSON Schema

atlassian-scope-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Scope",
  "title": "Scope",
  "additionalProperties": true,
  "description": "The projects the item is associated with. Indicated for items associated with [next-gen projects](https://confluence.atlassian.com/x/loMyO).",
  "properties": {
    "project": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectDetails"
        }
      ],
      "description": "The project the item has scope in.",
      "readOnly": true
    },
    "type": {
      "description": "The type of scope.",
      "enum": [
        "PROJECT",
        "TEMPLATE"
      ],
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}