• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ViewTrainTicket",
3  "intentVersion": "1.0.1",
4  "llmDescription": "查看火车票",
5  "keywords": ["ViewTrainTicket"],
6  "domain": "NavigationDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "entityId",
12        "seatLevelShow"
13      ]
14    },
15    "required": [
16      "entityId"
17    ],
18    "properties": {
19      "entityId": {
20        "description": "数据唯一标识。",
21        "type": "number"
22      },
23      "seatLevelShow": {
24        "description": "座位类型",
25        "type": "string",
26        "enum": [
27          "二等座",
28          "二等卧",
29          "一等座",
30          "一等卧",
31          "商务座",
32          "硬座",
33          "软座",
34          "硬卧",
35          "软卧",
36          "高软",
37          "无座"
38        ]
39      }
40    }
41  },
42  "result": {
43    "type": "object",
44    "propertyNames": {
45      "enum": [
46        "code",
47        "result"
48      ]
49    },
50    "required": [
51      "code",
52      "result"
53    ],
54    "properties": {
55      "code": {
56        "description": "意图调用返回的结果码,0代表成功。",
57        "type": "number"
58      },
59      "result": {
60        "description": "意图调用返回的数据,如果无数据则返回空。",
61        "type": "object"
62      }
63    }
64  }
65}
66