qweb-client
Version:
qweb client.
177 lines • 5.05 kB
JSON
{
"info": {
"title": "获取车险配置",
"author": "Sophia",
"description": "获取车险配置",
"auth": true
},
"request": {},
"response": {
"type": "object",
"properties": {
"vehicleUsageType": {
"type": "array",
"description": "车辆使用性质",
"items": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"description": "参数选项的值(用于传值给后台)"
},
"label": {
"type": "string",
"description": "参数选项的标签(用于展示给用户)"
}
},
"additionalProperties": false,
"required": [
"value",
"label"
]
}
},
"certificateType": {
"type": "array",
"description": "证件类型",
"items": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"description": "参数选项的值"
},
"type": {
"type": "integer",
"description": "证件类型:1-个人证件 2-团体企业证件"
},
"label": {
"type": "string",
"description": "参数选项的标签"
}
}
}
},
"bizInsuranceInfo": {
"type": "array",
"description": "商业险种数据",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "商业险险种名称"
},
"code": {
"type": "string",
"description": "商业险险种代号"
},
"hasDeductible": {
"type": "integer",
"description": "是否有不计免赔额选项,0:没有,1:有"
},
"relatedType": {
"type": "string",
"description": "依赖于某个险种,如果依赖的险种没有选中,则该险种不可选,不依赖其他险种时,此字段为空字符串"
},
"coverageRange": {
"type": "object",
"description": "保额浮动范围",
"properties": {
"min": {
"type": "integer",
"description": "下限(百分比)"
},
"max": {
"type": "integer",
"description": "上限(百分比)"
}
}
},
"coverageOptionList": {
"type": "array",
"description": "选项列表",
"items": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"description": "参数选项的值(用于传值给后台)"
},
"label": {
"type": "string",
"description": "参数选项的标签(用于展示给用户)"
}
},
"additionalProperties": false,
"required": [
"value",
"label"
]
}
}
},
"additionalProperties": false,
"required": [
"name",
"code",
"hasDeductible",
"relatedType"
]
}
},
"associateType": {
"type": "array",
"description": "人员所属类型",
"items": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"description": "参数选项的值(用于传值给后台)"
},
"label": {
"type": "string",
"description": "参数选项的标签(用于展示给用户)"
}
},
"additionalProperties": false,
"required": [
"value",
"label"
]
}
},
"fuelType": {
"type": "array",
"description": "燃油类型",
"items": {
"type": "object",
"properties": {
"value": {
"type": "integer",
"description": "参数选项的值(用于传值给后台)"
},
"label": {
"type": "string",
"description": "参数选项的标签(用于展示给用户)"
}
},
"additionalProperties": false,
"required": [
"value",
"label"
]
}
}
},
"additionalProperties": false,
"required": [
"vehicleUsageType",
"certificateType",
"bizInsuranceInfo",
"associateType",
"fuelType"
]
}
}