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