1{ 2 "intentName": "SearchPowerBankStationLocal", 3 "intentVersion": "1.0.1", 4 "llmDescription": "本地查找充电宝网点", 5 "keywords": ["SearchPowerBankStationLocal"], 6 "domain": "LifestyleDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "location", 12 "keywords", 13 "category" 14 ] 15 }, 16 "properties": { 17 "location": { 18 "description": "位置的经纬度信息。纬度的取值范围:[-90, 90],经度的取值范围:[-180, 180)。", 19 "type": "object" 20 }, 21 "keywords": { 22 "description": "搜索关键词。", 23 "type": "string" 24 }, 25 "category": { 26 "description": "充电宝网点类别。可租借:Rentable。可归还:Returnable。全部门店:All。", 27 "type": "string", 28 "enum":[ 29 "Rentable", 30 "Returnable", 31 "All" 32 ] 33 } 34 } 35 }, 36 "result": { 37 "type": "object", 38 "propertyNames": { 39 "enum": [ 40 "code", 41 "result" 42 ] 43 }, 44 "required": [ 45 "code", 46 "result" 47 ], 48 "properties": { 49 "code": { 50 "description": "意图调用返回的结果码,0代表成功。", 51 "type": "number" 52 }, 53 "result": { 54 "description": "意图调用返回的数据,如果无数据则返回空。", 55 "type": "object" 56 } 57 } 58 } 59} 60