qweb-client
Version:
qweb client.
35 lines • 806 B
JSON
{
"info": {
"title": "检查车牌当天是否报过价",
"author": "leo",
"description": "如果所属机构下其他人员对该车牌进行过报价,就算做有报过价",
"auth": true
},
"request": {
"type": "string",
"pattern": "^.{7,8}$",
"description": "车辆车牌号码"
},
"response": {
"type": "object",
"properties": {
"times": {
"type": "integer",
"description": "报价次数"
},
"personnelNames": {
"type": "array",
"items": {
"type": "string",
"pattern": "^.{2,10}$",
"description": "当日对该车牌进行过报价的人员名字"
}
}
},
"additionalProperties": false,
"required": [
"times",
"personnelList"
]
}
}