1{ 2 "intentName": "ViewPayment", 3 "intentVersion": "1.0.1", 4 "llmDescription": "查看生活缴费信息", 5 "keywords": ["ViewPayment"], 6 "domain": "LifestyleDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "entityId", 12 "entityName", 13 "accountNumber", 14 "billType", 15 "cell", 16 "company", 17 "city", 18 "address", 19 "belongingAccount" 20 ] 21 }, 22 "required": [ 23 "entityName", 24 "belongingAccount" 25 ], 26 "properties": { 27 "entityId": { 28 "description": "数据唯一标识。", 29 "type": "string" 30 }, 31 "entityName": { 32 "description": "实体名称。", 33 "type": "string" 34 }, 35 "accountNumber": { 36 "description": "缴费户号。", 37 "type": "number" 38 }, 39 "billType": { 40 "description": "生活缴费费用类型,取值如下,0:水费。1:电费。2:燃气费。3:话费。4:流量。5:暖气费。", 41 "type": "number", 42 "enum": [ 43 0, 44 1, 45 2, 46 3, 47 4, 48 5 49 ] 50 }, 51 "cell": { 52 "description": "小区。", 53 "type": "string" 54 }, 55 "company": { 56 "description": "缴费单位。", 57 "type": "string" 58 }, 59 "city": { 60 "description": "城市。", 61 "type": "string" 62 }, 63 "address": { 64 "description": "地址。", 65 "type": "string" 66 }, 67 "belongingAccount": { 68 "description": "华为账号id。", 69 "type": "string" 70 } 71 } 72 }, 73 "result": { 74 "type": "object", 75 "propertyNames": { 76 "enum": [ 77 "code", 78 "result" 79 ] 80 }, 81 "required": [ 82 "code", 83 "result" 84 ], 85 "properties": { 86 "code": { 87 "description": "意图调用返回的结果码,0代表成功。", 88 "type": "number" 89 }, 90 "result": { 91 "description": "意图调用返回的数据,如果无数据则返回空。", 92 "type": "object" 93 } 94 } 95 } 96} 97