• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "ViewWealthManageProduct",
3  "intentVersion": "1.0.1",
4  "llmDescription": "查看理财产品",
5  "keywords": ["ViewWealthManageProduct"],
6  "domain": "FinanceDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "wealthManageName",
12        "wealthManageType"
13      ]
14    },
15    "properties": {
16       "wealthManageName": {
17        "description": "理财名称。",
18        "type": "string"
19      },
20      "wealthManageType": {
21        "description": "理财类型。活期理财:Current。定期理财:Regular。",
22        "type": "string",
23        "enum": [
24          "Current",
25          "Regular"
26      ]
27      }
28    }
29  },
30  "result": {
31    "type": "object",
32    "propertyNames": {
33      "enum": [
34        "code",
35        "result"
36      ]
37    },
38    "required": [
39      "code",
40      "result"
41    ],
42    "properties": {
43      "code": {
44        "description": "意图调用返回的结果码,0代表成功。",
45        "type": "number"
46      },
47      "result": {
48        "description": "意图调用返回的数据,如果无数据则返回空。",
49        "type": "object"
50      }
51    }
52  }
53}
54