{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "$schema": {
      "description": "The URL of the schema file",
      "type": "string"
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "The name of the project, organization, or product"
    },
    "description": {
      "description": "Optional description used for SEO and LLM indexing",
      "type": "string"
    },
    "logo": {
      "$ref": "#/definitions/logoSchema"
    },
    "favicon": {
      "$ref": "#/definitions/faviconSchema"
    },
    "colors": {
      "$ref": "#/definitions/colorsSchema"
    },
    "appearance": {
      "$ref": "#/definitions/appearanceSchema"
    },
    "fonts": {
      "$ref": "#/definitions/fontsSchema"
    },
    "icons": {
      "$ref": "#/definitions/iconsSchema"
    },
    "navigation": {
      "$ref": "#/definitions/navigationSchema"
    },
    "navbar": {
      "$ref": "#/definitions/navbarSchema"
    },
    "banner": {
      "$ref": "#/definitions/bannerSchema"
    },
    "footer": {
      "type": "object",
      "properties": {
        "socials": {
          "description": "An object in which each key is the name of a social media\nplatform and each value is the URL to your profile.\nFor example: { \"x\": \"https://x.com/mintlify\" }",
          "type": "object",
          "propertyNames": {
            "type": "string",
            "enum": [
              "x",
              "website",
              "facebook",
              "youtube",
              "discord",
              "slack",
              "github",
              "linkedin",
              "instagram",
              "hacker-news",
              "medium",
              "telegram",
              "twitter",
              "x-twitter",
              "earth-americas",
              "bluesky",
              "threads",
              "reddit",
              "podcast"
            ]
          },
          "additionalProperties": {
            "type": "string"
          }
        },
        "links": {
          "description": "Link columns displayed in the footer. Maximum 4 columns",
          "maxItems": 4,
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "header": {
                "description": "Column header title",
                "type": "string"
              },
              "items": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "label": {
                      "type": "string",
                      "minLength": 1,
                      "description": "Link text"
                    },
                    "href": {
                      "type": "string",
                      "description": "Link destination URL"
                    }
                  },
                  "required": [
                    "label",
                    "href"
                  ],
                  "additionalProperties": false
                },
                "description": "Links in the column"
              }
            },
            "required": [
              "items"
            ],
            "additionalProperties": false
          }
        }
      },
      "additionalProperties": false
    },
    "redirects": {
      "description": "URL redirect rules applied before routing",
      "type": "array",
      "items": {
        "$ref": "#/definitions/redirectSchema"
      }
    },
    "search": {
      "$ref": "#/definitions/searchSchema"
    },
    "seo": {
      "$ref": "#/definitions/seoSchema"
    },
    "assistant": {
      "$ref": "#/definitions/assistantSchema"
    }
  },
  "required": [
    "name"
  ],
  "additionalProperties": {},
  "description": "Holocron site configuration. Compatible with Mintlify docs.json —\nany additional Mintlify fields outside this schema are accepted and\nignored at runtime",
  "definitions": {
    "logoSchema": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 3,
          "description": "The logo (for both light and dark mode)"
        },
        {
          "type": "object",
          "properties": {
            "light": {
              "type": "string",
              "description": "Path pointing to the light logo file to use in dark mode,\nincluding the file extension. Example: `/logo.png`"
            },
            "dark": {
              "type": "string",
              "description": "Path pointing to the dark logo file to use in light mode,\nincluding the file extension. Example: `/logo-dark.png`"
            },
            "href": {
              "description": "The URL to redirect to when clicking the logo. If not provided,\nthe logo will link to the homepage. Example: `https://example.com`",
              "type": "string"
            }
          },
          "required": [
            "light",
            "dark"
          ],
          "additionalProperties": false
        }
      ],
      "description": "The logo configuration. Can be a single image path for both light and\ndark mode, or separate paths for each mode with an optional click\ntarget URL"
    },
    "faviconSchema": {
      "anyOf": [
        {
          "type": "string",
          "description": "Path pointing to the favicon file in your docs folder, including\nthe file extension. The favicon will automatically be resized to\nthe appropriate sizes"
        },
        {
          "type": "object",
          "properties": {
            "light": {
              "type": "string",
              "description": "Path pointing to the light favicon file to use in dark mode,\nincluding the file extension. Example: `/favicon.png`"
            },
            "dark": {
              "type": "string",
              "description": "Path pointing to the dark favicon file to use in light mode,\nincluding the file extension. Example: `/favicon-dark.png`"
            }
          },
          "required": [
            "light",
            "dark"
          ],
          "additionalProperties": false,
          "description": "The path to the favicon. Can be a single file or a pair for\nlight and dark mode. Example: `/favicon.png`"
        }
      ]
    },
    "colorsSchema": {
      "type": "object",
      "properties": {
        "primary": {
          "type": "string",
          "pattern": "^#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
          "description": "The primary color of the theme"
        },
        "light": {
          "description": "The light color of the theme. Used for dark mode",
          "type": "string",
          "pattern": "^#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$"
        },
        "dark": {
          "description": "The dark color of the theme. Used for light mode",
          "type": "string",
          "pattern": "^#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$"
        }
      },
      "required": [
        "primary"
      ],
      "additionalProperties": false,
      "description": "The colors to use in your documentation. At the very least, you must\ndefine the primary color. For example:\n{ \"colors\": { \"primary\": \"#ff0000\" } }"
    },
    "appearanceSchema": {
      "type": "object",
      "properties": {
        "default": {
          "description": "Default color mode. Choose `system` to match the user's OS\nsetting, or `light` or `dark` to force a specific mode.\nDefaults to `system`",
          "type": "string",
          "enum": [
            "system",
            "light",
            "dark"
          ]
        },
        "strict": {
          "description": "When `true`, hides the light/dark mode toggle so users\ncannot switch modes. Defaults to `false`",
          "type": "boolean"
        }
      },
      "additionalProperties": false,
      "description": "Light/dark mode settings"
    },
    "fontsSchema": {
      "type": "object",
      "properties": {
        "family": {
          "description": "Font family name. Google Fonts family names load automatically",
          "type": "string"
        },
        "weight": {
          "description": "Font weight",
          "type": "number"
        },
        "source": {
          "description": "URL to a hosted font or path to a local font file. Local files\nmust be placed in the `public/` directory (e.g. `public/fonts/my-font.woff2`)\nand referenced as `/fonts/my-font.woff2`",
          "type": "string"
        },
        "format": {
          "description": "Font file format. Required when using a local source file",
          "type": "string",
          "enum": [
            "woff",
            "woff2"
          ]
        },
        "heading": {
          "description": "Override font settings for headings",
          "type": "object",
          "properties": {
            "family": {
              "type": "string",
              "description": "Font family name (e.g. \"Inter\", \"Open Sans\")"
            },
            "weight": {
              "description": "Font weight (e.g. 400, 700)",
              "type": "number"
            },
            "source": {
              "description": "URL to a hosted font or path to a local font file. Local files\nmust be placed in the `public/` directory and referenced with\nan absolute path (e.g. `/fonts/my-font.woff2`)",
              "type": "string"
            },
            "format": {
              "description": "Font file format. Required when using a local source file",
              "type": "string",
              "enum": [
                "woff",
                "woff2"
              ]
            }
          },
          "required": [
            "family"
          ],
          "additionalProperties": false
        },
        "body": {
          "description": "Override font settings for body text",
          "type": "object",
          "properties": {
            "family": {
              "type": "string",
              "description": "Font family name (e.g. \"Inter\", \"Open Sans\")"
            },
            "weight": {
              "description": "Font weight (e.g. 400, 700)",
              "type": "number"
            },
            "source": {
              "description": "URL to a hosted font or path to a local font file. Local files\nmust be placed in the `public/` directory and referenced with\nan absolute path (e.g. `/fonts/my-font.woff2`)",
              "type": "string"
            },
            "format": {
              "description": "Font file format. Required when using a local source file",
              "type": "string",
              "enum": [
                "woff",
                "woff2"
              ]
            }
          },
          "required": [
            "family"
          ],
          "additionalProperties": false
        }
      },
      "additionalProperties": false,
      "description": "Custom fonts for your documentation"
    },
    "iconsSchema": {
      "type": "object",
      "properties": {
        "library": {
          "description": "Project-wide icon library used for plain icon strings",
          "type": "string",
          "enum": [
            "fontawesome",
            "lucide",
            "tabler"
          ]
        }
      },
      "additionalProperties": false,
      "description": "Icon library settings"
    },
    "navigationSchema": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "tabs": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/tabSchema"
              },
              "description": "The tabs rendered in the tab bar"
            },
            "global": {
              "type": "object",
              "properties": {
                "anchors": {
                  "description": "Anchors displayed across all tabs. Useful for external links like\na GitHub repo or a changelog that should always be visible",
                  "type": "array",
                  "items": {
                    "$ref": "#/definitions/anchorSchema"
                  }
                }
              },
              "additionalProperties": false,
              "description": "Navigation items rendered globally across all tabs and pages"
            },
            "anchors": {
              "description": "Anchors displayed across all tabs. Alternative to `global.anchors`",
              "type": "array",
              "items": {
                "$ref": "#/definitions/anchorSchema"
              }
            }
          },
          "required": [
            "tabs"
          ],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "groups": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/groupSchema"
              },
              "description": "Root sidebar groups (rendered without a tab wrapper)"
            },
            "global": {
              "type": "object",
              "properties": {
                "anchors": {
                  "description": "Anchors displayed across all tabs. Useful for external links like\na GitHub repo or a changelog that should always be visible",
                  "type": "array",
                  "items": {
                    "$ref": "#/definitions/anchorSchema"
                  }
                }
              },
              "additionalProperties": false,
              "description": "Navigation items rendered globally across all tabs and pages"
            },
            "anchors": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/anchorSchema"
              }
            }
          },
          "required": [
            "groups"
          ],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "pages": {
              "type": "array",
              "items": {
                "anyOf": [
                  {
                    "type": "string"
                  },
                  {
                    "$ref": "#/definitions/groupSchema"
                  }
                ]
              },
              "description": "Root pages (rendered without a tab or group wrapper). Each entry\nis a string slug or a nested group"
            },
            "global": {
              "type": "object",
              "properties": {
                "anchors": {
                  "description": "Anchors displayed across all tabs. Useful for external links like\na GitHub repo or a changelog that should always be visible",
                  "type": "array",
                  "items": {
                    "$ref": "#/definitions/anchorSchema"
                  }
                }
              },
              "additionalProperties": false,
              "description": "Navigation items rendered globally across all tabs and pages"
            },
            "anchors": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/anchorSchema"
              }
            }
          },
          "required": [
            "pages"
          ],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "versions": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/versionSchema"
              },
              "description": "Version entries for the version switcher"
            },
            "global": {
              "type": "object",
              "properties": {
                "anchors": {
                  "description": "Anchors displayed across all tabs. Useful for external links like\na GitHub repo or a changelog that should always be visible",
                  "type": "array",
                  "items": {
                    "$ref": "#/definitions/anchorSchema"
                  }
                }
              },
              "additionalProperties": false,
              "description": "Navigation items rendered globally across all tabs and pages"
            },
            "anchors": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/anchorSchema"
              }
            }
          },
          "required": [
            "versions"
          ],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "dropdowns": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/dropdownSchema"
              },
              "description": "Dropdown entries for the dropdown switcher"
            },
            "global": {
              "type": "object",
              "properties": {
                "anchors": {
                  "description": "Anchors displayed across all tabs. Useful for external links like\na GitHub repo or a changelog that should always be visible",
                  "type": "array",
                  "items": {
                    "$ref": "#/definitions/anchorSchema"
                  }
                }
              },
              "additionalProperties": false,
              "description": "Navigation items rendered globally across all tabs and pages"
            },
            "anchors": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/anchorSchema"
              }
            }
          },
          "required": [
            "dropdowns"
          ],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "products": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/productSchema"
              },
              "description": "Product entries for the product switcher"
            },
            "global": {
              "type": "object",
              "properties": {
                "anchors": {
                  "description": "Anchors displayed across all tabs. Useful for external links like\na GitHub repo or a changelog that should always be visible",
                  "type": "array",
                  "items": {
                    "$ref": "#/definitions/anchorSchema"
                  }
                }
              },
              "additionalProperties": false,
              "description": "Navigation items rendered globally across all tabs and pages"
            },
            "anchors": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/anchorSchema"
              }
            }
          },
          "required": [
            "products"
          ],
          "additionalProperties": false
        },
        {
          "type": "array",
          "items": {
            "$ref": "#/definitions/tabSchema"
          },
          "description": "A shorthand array of tabs"
        },
        {
          "type": "array",
          "items": {
            "$ref": "#/definitions/groupSchema"
          },
          "description": "A shorthand array of root groups"
        }
      ],
      "description": "The site navigation. Can be an object with `tabs`, `groups`,\n`pages`, `versions`, `dropdowns`, or `products`, or a\nshorthand array of tabs or groups"
    },
    "tabSchema": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "tab": {
              "type": "string",
              "minLength": 1,
              "description": "The name of the tab"
            },
            "icon": {
              "$ref": "#/definitions/iconSchema"
            },
            "hidden": {
              "description": "Whether the tab is hidden by default",
              "type": "boolean"
            },
            "align": {
              "description": "Tab alignment in the navigation",
              "type": "string",
              "enum": [
                "start",
                "end"
              ]
            },
            "groups": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/groupSchema"
              },
              "description": "The sidebar groups inside the tab"
            }
          },
          "required": [
            "tab",
            "groups"
          ],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "tab": {
              "type": "string",
              "minLength": 1,
              "description": "The name of the tab"
            },
            "icon": {
              "$ref": "#/definitions/iconSchema"
            },
            "hidden": {
              "description": "Whether the tab is hidden by default",
              "type": "boolean"
            },
            "align": {
              "description": "Tab alignment in the navigation",
              "type": "string",
              "enum": [
                "start",
                "end"
              ]
            },
            "pages": {
              "type": "array",
              "items": {
                "anyOf": [
                  {
                    "type": "string"
                  },
                  {
                    "$ref": "#/definitions/groupSchema"
                  }
                ]
              },
              "description": "The pages of the tab, flat (no groups wrapper). Each entry is a\nstring slug or a nested group"
            }
          },
          "required": [
            "tab",
            "pages"
          ],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "tab": {
              "type": "string",
              "minLength": 1,
              "description": "The name of the tab"
            },
            "icon": {
              "$ref": "#/definitions/iconSchema"
            },
            "hidden": {
              "description": "Whether the tab is hidden by default",
              "type": "boolean"
            },
            "align": {
              "description": "Tab alignment in the navigation",
              "type": "string",
              "enum": [
                "start",
                "end"
              ]
            },
            "href": {
              "type": "string",
              "description": "A URL for a link-only tab. When set, this tab behaves as an anchor\npointing at an external URL"
            }
          },
          "required": [
            "tab",
            "href"
          ],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "tab": {
              "type": "string",
              "minLength": 1,
              "description": "The name of the tab"
            },
            "icon": {
              "$ref": "#/definitions/iconSchema"
            },
            "hidden": {
              "description": "Whether the tab is hidden by default",
              "type": "boolean"
            },
            "align": {
              "description": "Tab alignment in the navigation",
              "type": "string",
              "enum": [
                "start",
                "end"
              ]
            },
            "openapi": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                }
              ],
              "description": "Path to an OpenAPI specification file (JSON or YAML), or an array\nof paths. Endpoints from the spec are auto-generated as pages\ngrouped by tag. Example: `\"openapi.json\"` or\n`[\"openapi/v1.json\", \"openapi/v2.json\"]`"
            },
            "openapiBase": {
              "description": "Slug prefix for generated OpenAPI pages. Defaults to `\"api\"`.\nSet to `\"\"` for no prefix. Example: with `\"reference\"`,\nendpoints are generated at `/reference/get-users` instead of\n`/api/get-users`",
              "type": "string"
            }
          },
          "required": [
            "tab",
            "openapi"
          ],
          "additionalProperties": false
        }
      ],
      "description": "A top-level tab in the navigation. Either contains sidebar groups, a\nflat list of pages, a link-only tab, or an OpenAPI spec for\nauto-generated API reference pages"
    },
    "iconSchema": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "object",
          "properties": {
            "name": {
              "type": "string",
              "description": "The name of the icon"
            },
            "style": {
              "description": "The Font Awesome icon style variant",
              "type": "string",
              "enum": [
                "brands",
                "duotone",
                "light",
                "regular",
                "sharp-duotone-solid",
                "sharp-light",
                "sharp-regular",
                "sharp-solid",
                "sharp-thin",
                "solid",
                "thin"
              ]
            },
            "library": {
              "description": "The icon library to resolve the icon name from",
              "type": "string",
              "enum": [
                "fontawesome",
                "lucide",
                "tabler"
              ]
            }
          },
          "required": [
            "name"
          ],
          "additionalProperties": false
        }
      ],
      "description": "The icon to be displayed in the section"
    },
    "groupSchema": {
      "type": "object",
      "properties": {
        "group": {
          "type": "string",
          "minLength": 1,
          "description": "The name of the group"
        },
        "icon": {
          "$ref": "#/definitions/iconSchema"
        },
        "hidden": {
          "description": "Whether the group is hidden by default",
          "type": "boolean"
        },
        "root": {
          "description": "A page in the navigation referenced by its path. Example:\n`path/to/page`",
          "type": "string",
          "minLength": 1
        },
        "tag": {
          "description": "Tag for the group",
          "type": "string"
        },
        "expanded": {
          "description": "Whether the group is expanded by default",
          "type": "boolean"
        },
        "pages": {
          "type": "array",
          "items": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "$ref": "#/definitions/groupSchema"
              }
            ]
          },
          "description": "The pages in the group. Each entry is either a string slug\npointing at an MDX file, or a nested group object"
        }
      },
      "required": [
        "group",
        "pages"
      ],
      "additionalProperties": false,
      "description": "A sidebar group containing pages and/or nested groups"
    },
    "anchorSchema": {
      "type": "object",
      "properties": {
        "anchor": {
          "type": "string",
          "minLength": 1,
          "description": "The name of the anchor"
        },
        "href": {
          "type": "string",
          "description": "A valid path or external link"
        },
        "icon": {
          "$ref": "#/definitions/iconSchema"
        },
        "hidden": {
          "description": "Whether the anchor is hidden by default",
          "type": "boolean"
        }
      },
      "required": [
        "anchor",
        "href"
      ],
      "additionalProperties": false,
      "description": "A persistent link rendered as a tab in the tab bar"
    },
    "versionSchema": {
      "type": "object",
      "properties": {
        "version": {
          "type": "string",
          "minLength": 1,
          "description": "Display name of the version"
        },
        "default": {
          "description": "Whether this is the default version",
          "type": "boolean"
        },
        "tag": {
          "description": "Badge label displayed next to the version in the selector.\nUse to highlight versions such as \"Latest\", \"Beta\", \"Deprecated\"",
          "type": "string"
        },
        "hidden": {
          "description": "Whether this version is hidden from the selector",
          "type": "boolean"
        },
        "tabs": {
          "description": "Tabs within this item",
          "type": "array",
          "items": {
            "$ref": "#/definitions/tabSchema"
          }
        },
        "groups": {
          "description": "Sidebar groups within this item",
          "type": "array",
          "items": {
            "$ref": "#/definitions/groupSchema"
          }
        },
        "pages": {
          "description": "Pages within this item (flat, no groups wrapper)",
          "type": "array",
          "items": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "$ref": "#/definitions/groupSchema"
              }
            ]
          }
        },
        "anchors": {
          "description": "Anchors within this item",
          "type": "array",
          "items": {
            "$ref": "#/definitions/anchorSchema"
          }
        }
      },
      "required": [
        "version"
      ],
      "additionalProperties": false,
      "description": "A version entry for the version switcher dropdown"
    },
    "dropdownSchema": {
      "type": "object",
      "properties": {
        "dropdown": {
          "type": "string",
          "minLength": 1,
          "description": "Display name of the dropdown item"
        },
        "icon": {
          "$ref": "#/definitions/iconSchema"
        },
        "hidden": {
          "description": "Whether this dropdown item is hidden",
          "type": "boolean"
        },
        "href": {
          "description": "A URL for a link-only dropdown item. When set, selecting this\nitem navigates to the URL instead of switching sidebar content",
          "type": "string"
        },
        "tabs": {
          "description": "Tabs within this item",
          "type": "array",
          "items": {
            "$ref": "#/definitions/tabSchema"
          }
        },
        "groups": {
          "description": "Sidebar groups within this item",
          "type": "array",
          "items": {
            "$ref": "#/definitions/groupSchema"
          }
        },
        "pages": {
          "description": "Pages within this item (flat, no groups wrapper)",
          "type": "array",
          "items": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "$ref": "#/definitions/groupSchema"
              }
            ]
          }
        },
        "anchors": {
          "description": "Anchors within this item",
          "type": "array",
          "items": {
            "$ref": "#/definitions/anchorSchema"
          }
        }
      },
      "required": [
        "dropdown"
      ],
      "additionalProperties": false,
      "description": "A dropdown navigation item, either with content or a link"
    },
    "productSchema": {
      "type": "object",
      "properties": {
        "product": {
          "type": "string",
          "minLength": 1,
          "description": "Display name of the product"
        },
        "description": {
          "description": "Description of the product",
          "type": "string"
        },
        "icon": {
          "$ref": "#/definitions/iconSchema"
        },
        "href": {
          "description": "A URL for a link-only product entry",
          "type": "string"
        },
        "tabs": {
          "description": "Tabs within this item",
          "type": "array",
          "items": {
            "$ref": "#/definitions/tabSchema"
          }
        },
        "groups": {
          "description": "Sidebar groups within this item",
          "type": "array",
          "items": {
            "$ref": "#/definitions/groupSchema"
          }
        },
        "pages": {
          "description": "Pages within this item (flat, no groups wrapper)",
          "type": "array",
          "items": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "$ref": "#/definitions/groupSchema"
              }
            ]
          }
        },
        "anchors": {
          "description": "Anchors within this item",
          "type": "array",
          "items": {
            "$ref": "#/definitions/anchorSchema"
          }
        }
      },
      "required": [
        "product"
      ],
      "additionalProperties": false,
      "description": "A product entry for the product switcher. Normalized into a\ndropdown item at runtime"
    },
    "navbarSchema": {
      "type": "object",
      "properties": {
        "links": {
          "description": "Links in the navbar",
          "type": "array",
          "items": {
            "$ref": "#/definitions/navbarLinkSchema"
          }
        },
        "primary": {
          "$ref": "#/definitions/navbarPrimarySchema"
        }
      },
      "additionalProperties": false,
      "description": "Navbar content and settings"
    },
    "navbarLinkSchema": {
      "type": "object",
      "properties": {
        "label": {
          "description": "The text label of the link. If omitted, it is derived from\n`type` (e.g. `github` → \"GitHub\")",
          "type": "string"
        },
        "type": {
          "description": "The kind of link. Known values: `github`, `discord`,\n`slack`, `button`, `link`. Controls the default icon and\nlabel",
          "type": "string"
        },
        "href": {
          "description": "The URL of the link",
          "type": "string"
        },
        "url": {
          "description": "Alias for `href` for Mintlify compatibility",
          "type": "string"
        },
        "icon": {
          "$ref": "#/definitions/iconSchema"
        }
      },
      "additionalProperties": false,
      "description": "A link rendered in the top navbar"
    },
    "navbarPrimarySchema": {
      "type": "object",
      "properties": {
        "label": {
          "description": "The button label",
          "type": "string"
        },
        "type": {
          "description": "The kind of primary button. Known values: `button`, `github`.\nControls the default styling",
          "type": "string"
        },
        "href": {
          "description": "The URL the primary button navigates to",
          "type": "string"
        },
        "url": {
          "description": "Alias for `href` for Mintlify compatibility",
          "type": "string"
        },
        "icon": {
          "$ref": "#/definitions/iconSchema"
        }
      },
      "additionalProperties": false,
      "description": "The primary CTA button rendered at the right of the navbar"
    },
    "bannerSchema": {
      "type": "object",
      "properties": {
        "content": {
          "type": "string",
          "minLength": 1,
          "description": "The text content displayed in the banner. Supports basic\nmarkdown links like `[text](url)`"
        },
        "dismissible": {
          "description": "Whether to show a dismiss button. Defaults to `false`",
          "type": "boolean"
        }
      },
      "required": [
        "content"
      ],
      "additionalProperties": false,
      "description": "A site-wide banner displayed at the top of every page"
    },
    "redirectSchema": {
      "type": "object",
      "properties": {
        "source": {
          "type": "string",
          "description": "The source path pattern to match"
        },
        "destination": {
          "type": "string",
          "description": "The destination path to redirect to"
        },
        "permanent": {
          "description": "Whether the redirect is permanent (301) or temporary (302).\nDefaults to `false`",
          "type": "boolean"
        }
      },
      "required": [
        "source",
        "destination"
      ],
      "additionalProperties": false,
      "description": "A single URL redirect rule"
    },
    "searchSchema": {
      "type": "object",
      "properties": {
        "prompt": {
          "description": "Placeholder text displayed in the search bar when empty",
          "type": "string"
        }
      },
      "additionalProperties": false,
      "description": "Search bar display settings"
    },
    "seoSchema": {
      "type": "object",
      "properties": {
        "indexing": {
          "description": "Which pages search engines should index. `navigable` indexes\nonly pages in navigation, `all` indexes every page",
          "type": "string",
          "enum": [
            "navigable",
            "all"
          ]
        },
        "metatags": {
          "description": "Custom meta tags added to every page. Each key is a meta tag\nname and the value is its content",
          "type": "object",
          "propertyNames": {
            "type": "string"
          },
          "additionalProperties": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false,
      "description": "Search engine optimization settings"
    },
    "assistantSchema": {
      "type": "object",
      "properties": {
        "enabled": {
          "description": "Whether to show the AI chat assistant. When `false`, the sidebar\nwidget, chat drawer, mobile \"Ask AI\" button, and the chat API\nendpoint are all disabled. Defaults to `true`",
          "type": "boolean"
        }
      },
      "additionalProperties": false,
      "description": "AI chat assistant settings"
    }
  }
}
