Atlassian · Schema

TopNavigationLookAndFeel

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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