Atlassian · Schema

CustomContextVariable

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string Type of custom context variable.
View JSON Schema on GitHub

JSON Schema

atlassian-customcontextvariable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomContextVariable",
  "title": "CustomContextVariable",
  "additionalProperties": false,
  "discriminator": {
    "mapping": {
      "issue": "#/components/schemas/IssueContextVariable",
      "json": "#/components/schemas/JsonContextVariable",
      "user": "#/components/schemas/UserContextVariable"
    },
    "propertyName": "type"
  },
  "oneOf": [
    {
      "$ref": "#/components/schemas/UserContextVariable"
    },
    {
      "$ref": "#/components/schemas/IssueContextVariable"
    },
    {
      "$ref": "#/components/schemas/JsonContextVariable"
    }
  ],
  "properties": {
    "type": {
      "description": "Type of custom context variable.",
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}