• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ReserveDinningTable",
3  "intentVersion": "1.0.1",
4  "llmDescription": "预订餐桌",
5  "keywords": ["ReserveDinningTable"],
6  "domain": "LifestyleDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "number",
12        "tableType",
13        "date",
14        "timeInterval",
15        "remark"
16      ]
17    },
18    "properties": {
19      "number": {
20        "description": "用餐的人数。",
21        "type": "number"
22      },
23      "tableType": {
24        "description": "餐桌的类型,支持小、中、大。包间类型,1:小桌型,2:中桌型,3:大桌型,4:包间类型。",
25        "type": "number",
26        "enum": [
27            1,
28            2,
29            3,
30            4
31        ]
32      },
33      "date": {
34        "description": "用餐的日期。",
35        "type": "string"
36      },
37      "timeInterval": {
38        "description": "用餐的时间段,包括开始时间和结束时间的时间戳,字段类型number。",
39        "type": "array"
40      },
41      "remark": {
42        "description": "一些用餐的备注,比如用餐人的喜好等。",
43        "type": "srting"
44      }
45    }
46  },
47  "result": {
48    "type": "object",
49    "propertyNames": {
50      "enum": [
51        "code",
52        "result"
53      ]
54    },
55    "required": [
56      "code",
57      "result"
58    ],
59    "properties": {
60      "code": {
61        "description": "意图调用返回的结果码,0代表成功。",
62        "type": "number"
63      },
64      "result": {
65        "description": "意图调用返回的数据,如果无数据则返回空。",
66        "type": "object"
67      }
68    }
69  }
70}
71