• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "RideHailing",
3  "intentVersion": "1.0.2",
4  "llmDescription": "开始打车",
5  "keywords": ["RideHailing"],
6  "domain": "NavigationDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "entityId",
12        "srcLocation",
13        "dstLocation",
14        "dstLocationType",
15        "hwChannelId",
16        "taxiType"
17      ]
18    },
19    "properties": {
20      "entityId": {
21        "description": "视频的唯一实体id。",
22        "type": "string"
23      },
24      "srcLocation": {
25        "description": "出发地信息,包括坐标系(缺省默认GCJ02),poi唯一标识,地点名称,经纬度,详细地址信息。",
26        "type": "object",
27        "properties": {
28          "poiId": {
29            "description": "唯一标识",
30            "type": "string"
31          },
32          "locationName": {
33            "description": "地点名称",
34            "type": "string"
35          },
36          "locationSystem": {
37            "description": "指定坐标系,(默认使用中国火星坐标系GCJ02)。",
38            "type": "string"
39          },
40          "longitude": {
41            "description": "经度",
42            "type": "string"
43          },
44          "latitude": {
45            "description": "纬度",
46            "type": "string"
47          },
48          "address": {
49            "description": "详细地址信息",
50            "type": "string"
51          }
52        }
53      },
54      "dstLocation": {
55        "description": "目的地的信息,包括坐标系(缺省默认GCJ02),poi的唯一标识,地点名称,经纬度,详细地址信息。",
56        "type": "object",
57        "properties": {
58          "poiId": {
59            "description": "唯一标识",
60            "type": "string"
61          },
62          "locationName": {
63            "description": "地点名称",
64            "type": "string"
65          },
66          "locationSystem": {
67            "description": "指定坐标系,(默认使用中国火星坐标系GCJ02)。",
68            "type": "string"
69          },
70          "longitude": {
71            "description": "经度",
72            "type": "string"
73          },
74          "latitude": {
75            "description": "纬度",
76            "type": "string"
77          },
78          "address": {
79            "description": "详细地址信息",
80            "type": "string"
81          }
82        }
83      },
84      "dstLocationType": {
85        "description": "目的地类型,比如'家'、'公司'。",
86        "type": "string"
87      },
88      "hwChannelId": {
89        "description": "标识入口的渠道标识,0x00000100:小艺建议,0x00000200:小艺语音,0x00000300:拖拽入口。",
90        "type": "string",
91        "enum": [
92          "0x00000100",
93          "0x00000200",
94          "0x00000300"
95        ]
96      },
97      "taxiType": {
98        "description": "车型,0:默认,1:快车,2:出租车,3:拼车,4:顺风车,5:专车。",
99        "type": "number",
100        "default": 0,
101        "enum": [
102          0,
103          1,
104          2,
105          3,
106          4,
107          5
108        ]
109      }
110    }
111  },
112  "result": {
113    "type": "object",
114    "propertyNames": {
115      "enum": [
116        "code",
117        "result"
118      ]
119    },
120    "required": [
121      "code",
122      "result"
123    ],
124    "properties": {
125      "code": {
126        "description": "意图调用返回的结果码,0代表成功。",
127        "type": "number"
128      },
129      "result": {
130        "description": "意图调用返回的数据,如果无数据则返回空。",
131        "type": "object"
132      }
133    }
134  }
135}
136