qweb-client
Version:
qweb client.
97 lines • 2.55 kB
JSON
{
"info": {
"title": "提交条款",
"author": "foam",
"description": "只读条款不必提交上来",
"auth": true
},
"request": {
"type": "object",
"properties": {
"taskId": {
"type": "string",
"pattern": "^[A-Za-z0-9]{32}$",
"description": "任务ID"
},
"programIndex": {
"type": "integer",
"description": "报价序号"
},
"clause": {
"type": "object",
"description": "特别约定条款",
"properties": {
"force": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "特别约定代号"
},
"name": {
"type": "string",
"description": "特别约定名称"
},
"content": {
"type": "string",
"description": "特别约定内容"
},
"readOnly": {
"type": "boolean",
"description": "是否为只读"
}
},
"additionalProperties": false,
"required": [
"code",
"name",
"content"
]
}
},
"biz": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "特别约定代号"
},
"name": {
"type": "string",
"description": "特别约定名称"
},
"content": {
"type": "string",
"description": "特别约定内容"
},
"readOnly": {
"type": "boolean",
"description": "是否为只读"
}
},
"additionalProperties": false,
"required": [
"code",
"name",
"content"
]
}
}
},
"additionalProperties": false,
"required": [
"force",
"biz"
]
}
}
},
"response": {
"type": "boolean",
"description": "true: 提交成功,false:提交失败"
}
}