Atlassian · Schema

Theme

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
themeKey string
name string
description string
icon object
_links object
View JSON Schema on GitHub

JSON Schema

atlassian-theme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Theme",
  "title": "Theme",
  "required": [
    "themeKey"
  ],
  "type": "object",
  "properties": {
    "themeKey": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "icon": {
      "$ref": "#/components/schemas/Icon"
    },
    "_links": {
      "$ref": "#/components/schemas/GenericLinks"
    }
  }
}