Atlassian · Schema

Breadcrumb

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
label string
url string
separator string
View JSON Schema on GitHub

JSON Schema

atlassian-breadcrumb-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Breadcrumb",
  "title": "Breadcrumb",
  "required": [
    "label",
    "separator",
    "url"
  ],
  "type": "object",
  "properties": {
    "label": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "separator": {
      "type": "string"
    }
  }
}