quality_saveInspectionDocumentAtomic
WRITESave inspection document atomic.
Parameters
inspectionDocumentIdstringrequiredfeaturesanyrequiredballoonsanyrequiredpdfUrlstringnulloptionalpageCountnumberoptionaldefaultPageWidthnumberoptionaldefaultPageHeightnumberoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "quality_saveInspectionDocumentAtomic",
"arguments": {
"inspectionDocumentId": "string",
"features": "string",
"balloons": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"inspectionDocumentId": {
"type": "string"
},
"pdfUrl": {
"type": [
"string",
"null"
]
},
"pageCount": {
"type": "number"
},
"defaultPageWidth": {
"type": "number"
},
"defaultPageHeight": {
"type": "number"
},
"features": {},
"balloons": {}
},
"required": [
"inspectionDocumentId",
"features",
"balloons"
]
}