• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "intentName": "PayRepayment",
3  "intentVersion": "1.0.1",
4  "llmDescription": "支付还款",
5  "keywords": ["PayRepayment"],
6  "domain": "FinanceDomain",
7  "parameters": {
8    "type": "object",
9    "propertyNames": {
10      "enum": [
11        "cardTailNumber",
12        "repaymentType"
13      ]
14    },
15    "properties": {
16       "cardTailNumber": {
17        "description": "银行卡尾号(4位)。",
18        "type": "string",
19        "maxLength": 16
20      },
21      "repaymentType": {
22        "description": "还款类型。CreditCard:信用卡。ConsumerLoan:消费贷。",
23        "type": "string",
24        "enum":[
25          "CreditCard",
26          "ConsumerLoan"
27        ]
28      }
29    }
30  },
31  "result": {
32    "type": "object",
33    "propertyNames": {
34      "enum": [
35        "code",
36        "result"
37      ]
38    },
39    "required": [
40      "code",
41      "result"
42    ],
43    "properties": {
44      "code": {
45        "description": "意图调用返回的结果码,0代表成功。",
46        "type": "number"
47      },
48      "result": {
49        "description": "意图调用返回的数据,如果无数据则返回空。",
50        "type": "object"
51      }
52    }
53  }
54}
55