• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ViewUtilityBill",
3  "intentVersion": "1.0.1",
4  "llmDescription": "查看生活缴费",
5  "keywords": ["ViewUtilityBill"],
6  "domain": "LifestyleDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "entityId",
12        "billType"
13      ]
14    },
15    "required": [
16      "entityId"
17    ],
18    "properties": {
19      "entityId": {
20        "description": "数据唯一标识。",
21        "type": "string",
22        "maxLength": 64
23      },
24      "billType": {
25        "description": "缴费类型。0:水费。1:电费。2:燃气费。3:话费。4:流量。",
26        "type": "number",
27        "enum":[
28          0,
29          1,
30          2,
31          3,
32          4
33        ]
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