Atlassian · Schema

ThemeNoLinks

Theme object without links. Used in ThemeArray.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-themenolinks-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThemeNoLinks",
  "title": "ThemeNoLinks",
  "required": [
    "themeKey"
  ],
  "type": "object",
  "properties": {
    "themeKey": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "icon": {
      "$ref": "#/components/schemas/Icon"
    }
  },
  "description": "Theme object without links. Used in ThemeArray."
}