{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Nav Asset",
  "description": "Schema for nav YAML files in mag_assets/navs/",
  "type": "object",
  "required": ["title"],
  "additionalProperties": false,
  "properties": {
    "title": {
      "type": "string",
      "description": "Display name for this nav entry"
    },
    "icon": {
      "type": "string",
      "description": "Icon name (optional — root.yml typically omits this)"
    },
    "isMurl": {
      "type": "boolean",
      "description": "When true, navigate via murl instead of url"
    },
    "navs": {
      "type": "array",
      "items": { "type": "string" },
      "description": "Child nav IDs — each must have a matching .yml file in the same navs/ folder"
    }
  }
}
