qweb-client
Version:
qweb client.
55 lines • 1.14 kB
JSON
{
"info": {
"title": "获取车辆折旧价",
"author": "Sophia",
"description": "获取车辆折旧价",
"auth": true
},
"request": {
"type": "object",
"properties": {
"usageType": {
"enum": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11
],
"description": "车辆使用性质"
},
"modelCode": {
"type": "string",
"pattern": "^[A-Z0-9]{10}$",
"description": "车辆精友代码,eg: FTABND0039"
},
"registerDate": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"description": "车辆注册日期"
},
"insuranceStartDate": {
"type": "string",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"description": "起保日期"
}
},
"additionalProperties": false,
"required": [
"usageType",
"modelCode",
"registerDate",
"insuranceStartDate"
]
},
"response": {
"type": "integer",
"description": "折旧价(分)"
}
}