• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ViewAccountChange",
3  "intentVersion": "1.0.1",
4  "llmDescription": "查看账户变动",
5  "keywords": ["ViewAccountChange"],
6  "domain": "FinanceDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "entityId",
12        "cardTailNumber",
13        "cardType",
14        "timeInterval"
15      ]
16    },
17    "properties": {
18      "entityId": {
19        "description": "数据唯一标识。",
20        "type": "string",
21        "maxLength": 64
22      },
23       "cardTailNumber": {
24        "description": "银行卡尾号(4位)。",
25        "type": "string",
26        "maxLength": 16
27      },
28      "cardType": {
29        "description": "银行卡类型。CreditCard:信用卡。SavingsCard:储蓄卡。",
30        "type": "string",
31        "enum":[
32          "CreditCard",
33          "SavingsCard"
34        ]
35      },
36      "timeInterval": {
37        "description": "查询交易时间范围。",
38        "type": "array"
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