1{ 2 "intentName": "ViewEBicycleBattery", 3 "intentVersion": "1.0.1", 4 "llmDescription": "查看电动自行车电量", 5 "keywords": ["ViewEBicycleBattery"], 6 "domain": "NavigationDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "entityId" 12 ] 13 }, 14 "properties": { 15 "entityId": { 16 "description": "数据唯一标识。", 17 "type": "string", 18 "maxLength": 64 19 } 20 } 21 }, 22 "result": { 23 "type": "object", 24 "propertyNames": { 25 "enum": [ 26 "code", 27 "result" 28 ] 29 }, 30 "required": [ 31 "code", 32 "result" 33 ], 34 "properties": { 35 "code": { 36 "description": "意图调用返回的结果码,0代表成功。", 37 "type": "number" 38 }, 39 "result": { 40 "description": "意图调用返回的数据,如果无数据则返回空。", 41 "type": "object" 42 } 43 } 44 } 45} 46