1{ 2 "intentName": "ViewCloudBackup", 3 "intentVersion": "1.0.1", 4 "llmDescription": "查看云盘备份", 5 "keywords": ["ViewCloudBackup"], 6 "domain": "ToolsDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "backupType" 12 ] 13 }, 14 "properties": { 15 "backupType": { 16 "description": "备份类型。Gallery:相册。Contact:通讯录。", 17 "type": "string", 18 "enum": [ 19 "Gallery", 20 "Contact" 21 ] 22 } 23 } 24 }, 25 "result": { 26 "type": "object", 27 "propertyNames": { 28 "enum": [ 29 "code", 30 "result" 31 ] 32 }, 33 "required": [ 34 "code", 35 "result" 36 ], 37 "properties": { 38 "code": { 39 "description": "意图调用返回的结果码,0代表成功。", 40 "type": "number" 41 }, 42 "result": { 43 "description": "意图调用返回的数据,如果无数据则返回空。", 44 "type": "object" 45 } 46 } 47 } 48} 49