{
  "title": "image",
  "type": "object",
  "properties": {
    "src": {
      "type": "string",
      "description": "图片资源地址，支持云文件ID（2.2.3起）"
    },
    "mode": {
      "type": "string",
      "description": "图片裁剪、缩放的模式",
      "defaultValue": "'scaleToFill'"
    },
    "lazy-load": {
      "type": "boolean",
      "description": "图片懒加载。只针对page与scroll-view下的image有效",
      "defaultValue": false
    },
    "aria-label": {
      "type": "string",
      "description": "无障碍访问，（属性）元素的额外描述"
    },
    "bindError": {
      "type": "handleEvent",
      "description": "当错误发生时，发布到 AppService 的事件名，事件对象event.detail = {errMsg: 'something wrong'}"
    },
    "bindLoad": {
      "type": "handleEvent",
      "description": "当图片载入完毕时，发布到 AppService 的事件名，事件对象event.detail = {height:'图片高度px', width:'图片宽度px'}"
    }
  },
  "additionalProperties": false
}