1{ 2 "intentName": "ViewSmartDevice", 3 "intentVersion": "1.0.1", 4 "llmDescription": "查看智能设备详情", 5 "keywords": ["ViewSmartDevice"], 6 "domain": "LifestyleDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "entityId", 12 "functionType" 13 ] 14 }, 15 "properties": { 16 "entityId": { 17 "description": "设备的唯一标识。", 18 "type": "string" 19 }, 20 "functionType": { 21 "description": "设备功能类型,回放/实时画面等,枚举定义。Playbafk:回看录像,LiveVideo:实时画面。", 22 "type": "string", 23 "enum": [ 24 "Playback", 25 "LiveVideo" 26 ], 27 "default": "LiveVideo" 28 } 29 } 30 }, 31 "result": { 32 "type": "object", 33 "propertyNames": { 34 "enum": [ 35 "code", 36 "result" 37 ] 38 }, 39 "required": [ 40 "code", 41 "result" 42 ], 43 "properties": { 44 "code": { 45 "description": "意图调用返回的结果码,0代表成功。", 46 "type": "number" 47 }, 48 "result": { 49 "description": "意图调用返回的数据,如果无数据则返回空。", 50 "type": "object" 51 } 52 } 53 } 54} 55