• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "GetEBicycleDeviceInfo",
3  "intentVersion": "1.0.1",
4  "llmDescription": "获取电动自行车设备信息",
5  "keywords": ["GetEBicycleDeviceInfo"],
6  "domain": "NavigationDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "infoType"
12      ]
13    },
14    "properties": {
15      "infoType": {
16        "description": "获取信息类型。CarInfo:默认,车辆信息(含里程,电量)。TirePressureInfo:胎压信息(设备名称+胎压信息)。",
17        "type": "string",
18        "enum":[
19          "CarInfo",
20          "TirePressureInfo"
21        ]
22      }
23    }
24  },
25  "result": {
26    "type": "object",
27    "propertyNames": {
28      "enum": [
29        "code",
30        "result",
31        "entityId",
32        "entityName",
33        "deviceName",
34        "batteryLevel",
35        "remainingMileage",
36        "tirePressureInfo"
37      ]
38    },
39    "required": [
40      "code",
41      "result",
42      "entityId",
43      "entityName",
44      "deviceName"
45    ],
46    "properties": {
47      "code": {
48        "description": "意图调用返回的结果码,0代表成功。",
49        "type": "number"
50      },
51      "result": {
52        "description": "意图调用返回的数据,如果无数据则返回空。",
53        "type": "object"
54      },
55      "entityId": {
56        "description": "数据唯一标识,设备的ID。",
57        "type": "string",
58        "maxLength": 64
59      },
60      "entityName": {
61        "description": "表示实体的名称,BicycleInfo。",
62        "type": "string"
63      },
64      "deviceName": {
65        "description": "设备名称。",
66        "type": "string"
67      },
68      "batteryLevel": {
69        "description": "剩余电量结果,单位百分比。",
70        "type": "number"
71      },
72      "remainingMileage": {
73        "description": "剩余里程,单位KM。",
74        "type": "number"
75      },
76      "tirePressureInfo": {
77        "description": "胎压信息,包含建议胎压值,整体状态和每个轮胎胎压信息(轮胎名称,胎压数值,胎压单位)。",
78        "type": "object"
79      }
80    }
81  }
82}
83