Atlassian · Schema

JsonContextVariable

A JSON object with custom content.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string Type of custom context variable.
value object A JSON object containing custom content.
View JSON Schema on GitHub

JSON Schema

atlassian-jsoncontextvariable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JsonContextVariable",
  "title": "JsonContextVariable",
  "description": "A JSON object with custom content.",
  "properties": {
    "type": {
      "description": "Type of custom context variable.",
      "type": "string"
    },
    "value": {
      "description": "A JSON object containing custom content.",
      "type": "object"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}