{
"intentName": "ViewPowerBankStation",
"intentVersion": "1.0.1",
"llmDescription": "查看充电宝",
"keywords": ["ViewPowerBankStation"],
"domain": "LifestyleDomain",
"parameters": {
"type": "object",
"propertyNames": {
"enum": [
"entityId",
"location",
"category"
]
},
"properties": {
"entityId": {
"description": "充电宝网点的唯一标识。",
"type": "string"
},
"location": {
"description": "位置的经纬度信息。纬度的取值范围:[-90, 90],经度的取值范围:[-180, 180)。",
"type": "object"
},
"category": {
"description": "充电宝网点类别。可租借:Rentable。可归还:Returnable。全部门店:All(默认值)。",
"type": "string",
"enum":[
"Rentable",
"Returnable",
"All"
],
"default":"All"
}
}
},
"result": {
"type": "object",
"propertyNames": {
"enum": [
"code",
"result"
]
},
"required": [
"code",
"result"
],
"properties": {
"code": {
"description": "意图调用返回的结果码,0代表成功。",
"type": "number"
},
"result": {
"description": "意图调用返回的数据,如果无数据则返回空。",
"type": "object"
}
}
}
}