Atlassian · Schema

Context

A context.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id integer The ID of the context.
name string The name of the context.
scope object The scope of the context.
View JSON Schema on GitHub

JSON Schema

atlassian-context-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Context",
  "title": "Context",
  "additionalProperties": false,
  "description": "A context.",
  "properties": {
    "id": {
      "description": "The ID of the context.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "name": {
      "description": "The name of the context.",
      "readOnly": true,
      "type": "string"
    },
    "scope": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Scope"
        }
      ],
      "description": "The scope of the context."
    }
  },
  "type": "object"
}