Atlassian · Schema

MenusLookAndFeel

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
hoverOrFocus object
color string
View JSON Schema on GitHub

JSON Schema

atlassian-menuslookandfeel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MenusLookAndFeel",
  "title": "MenusLookAndFeel",
  "required": [
    "color",
    "hoverOrFocus"
  ],
  "type": "object",
  "properties": {
    "hoverOrFocus": {
      "required": [
        "backgroundColor"
      ],
      "type": "object",
      "properties": {
        "backgroundColor": {
          "type": "string"
        }
      },
      "example": "example_value"
    },
    "color": {
      "type": "string",
      "example": "example_value"
    }
  }
}