Atlassian · Schema

HeaderLookAndFeel

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
backgroundColor string
button object
primaryNavigation object
secondaryNavigation object
search object
View JSON Schema on GitHub

JSON Schema

atlassian-headerlookandfeel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HeaderLookAndFeel",
  "title": "HeaderLookAndFeel",
  "required": [
    "backgroundColor",
    "button",
    "primaryNavigation",
    "search",
    "secondaryNavigation"
  ],
  "type": "object",
  "properties": {
    "backgroundColor": {
      "type": "string",
      "example": "example_value"
    },
    "button": {
      "$ref": "#/components/schemas/ButtonLookAndFeel"
    },
    "primaryNavigation": {
      "$ref": "#/components/schemas/NavigationLookAndFeel"
    },
    "secondaryNavigation": {
      "$ref": "#/components/schemas/NavigationLookAndFeel"
    },
    "search": {
      "$ref": "#/components/schemas/SearchFieldLookAndFeel"
    }
  }
}