{
  "title": "navigator",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "当前小程序内的跳转链接"
    },
    "open-type": {
      "type": "string",
      "description": "跳转方式",
      "defaultValue": "navigate",
      "enum": [
        "navigate",
        "redirect",
        "switchTab",
        "reLaunch",
        "navigateBack"
      ]
    },
    "delta": {
      "type": "number",
      "description": "当 open-type 为 'navigateBack' 时有效，表示回退的层数"
    },
    "hover-class": {
      "type": "string",
      "description": "指定点击时的样式类，当 hover-class=\"none\" 时，没有点击态效果",
      "defaultValue": "navigator-hover"
    },
    "hover-stop-propagation": {
      "type": "boolean",
      "description": "指定是否阻止本节点的祖先节点出现点击态",
      "defaultValue": false
    },
    "hover-start-time": {
      "type": "number",
      "description": "按住后多久出现点击态，单位毫秒",
      "defaultValue": 50
    },
    "hover-stay-time": {
      "type": "number",
      "description": "手指松开后点击态保留时间，单位毫秒",
      "defaultValue": 600
    }
  },
  "additionalProperties": false
}