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