Atlassian · Schema

LookAndFeelSettings

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
selected string
global object
theme object
custom object
View JSON Schema on GitHub

JSON Schema

atlassian-lookandfeelsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LookAndFeelSettings",
  "title": "LookAndFeelSettings",
  "required": [
    "custom",
    "global",
    "selected"
  ],
  "type": "object",
  "properties": {
    "selected": {
      "type": "string",
      "enum": [
        "global",
        "custom"
      ],
      "example": "global"
    },
    "global": {
      "$ref": "#/components/schemas/LookAndFeel"
    },
    "theme": {
      "$ref": "#/components/schemas/LookAndFeel"
    },
    "custom": {
      "$ref": "#/components/schemas/LookAndFeel"
    }
  }
}