{
  "title": "ad",
  "type": "object",
  "properties": {
    "unit-id": {
      "type": "string",
      "description": "广告单元id，可在小程序管理后台的流量主模块新建"
    },
    "ad-intervals": {
      "type": "number",
      "description": "广告自动刷新的间隔时间，单位为秒，参数值必须大于等于30（该参数不传入时 Banner 广告不会自动刷新）"
    },
    "ad-type": {
      "type": "string",
      "description": "广告类型，默认为展示banner，可通过设置该属性为video展示视频广告, grid为格子广告",
      "defaultValue": "banner"
    },
    "ad-theme": {
      "type": "string",
      "defaultValue": "white"
    },
    "bindLoad": {
      "tsType": "() => void",
      "description": "广告加载成功的回调"
    },
    "bindError": {
      "tsType": "() => void",
      "description": "广告加载失败的回调，event.detail = {errCode: 1002}"
    },
    "bindClose": {
      "tsType": "() => void",
      "description": "广告关闭的回调"
    }
  },
  "additionalProperties": false,
  "required": [
    "unit-id"
  ]
}