1{ 2 "intentName": "ViewAccountChangeFunc", 3 "intentVersion": "1.0.1", 4 "llmDescription": "查看账户变动功能", 5 "keywords": ["ViewAccountChangeFunc"], 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 }, 32 "timeInterval": { 33 "description": "查询交易时间范围。", 34 "type": "array" 35 } 36 } 37 }, 38 "result": { 39 "type": "object", 40 "propertyNames": { 41 "enum": [ 42 "code", 43 "result" 44 ] 45 }, 46 "required": [ 47 "code", 48 "result" 49 ], 50 "properties": { 51 "code": { 52 "description": "意图调用返回的结果码,0代表成功。", 53 "type": "number" 54 }, 55 "result": { 56 "description": "意图调用返回的数据,如果无数据则返回空。", 57 "type": "object" 58 } 59 } 60 } 61} 62