1{ 2 "intentName": "ViewOrderedBusiness", 3 "intentVersion": "1.0.1", 4 "llmDescription": "查看已订业务", 5 "keywords": ["ViewOrderedBusiness"], 6 "domain": "ToolsDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "category" 12 ] 13 }, 14 "properties": { 15 "category": { 16 "description": "余量分类。类型,DataTraffic:数据流量。VoiceTraffic:语音流量。SMSTraffic:短信流量。", 17 "type": "string", 18 "enum": [ 19 "DataTraffic", 20 "VoiceTraffic", 21 "SMSTraffic" 22 ] 23 } 24 } 25 }, 26 "result": { 27 "type": "object", 28 "propertyNames": { 29 "enum": [ 30 "code", 31 "result" 32 ] 33 }, 34 "required": [ 35 "code", 36 "result" 37 ], 38 "properties": { 39 "code": { 40 "description": "意图调用返回的结果码,0代表成功。", 41 "type": "number" 42 }, 43 "result": { 44 "description": "意图调用返回的数据,如果无数据则返回空。", 45 "type": "object" 46 } 47 } 48 } 49} 50