Atlassian · Schema

NavigationLookAndFeel

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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