1{ 2 "intentName": "SendLogistics", 3 "intentVersion": "1.0.1", 4 "llmDescription": "寄快递", 5 "keywords": ["SendLogistics"], 6 "domain": "LifestyleDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "sendContent" 12 ] 13 }, 14 "properties": { 15 "sendContent": { 16 "description": "寄件信息。", 17 "type": "string" 18 } 19 } 20 }, 21 "result": { 22 "type": "object", 23 "propertyNames": { 24 "enum": [ 25 "code", 26 "result" 27 ] 28 }, 29 "required": [ 30 "code", 31 "result" 32 ], 33 "properties": { 34 "code": { 35 "description": "意图调用返回的结果码,0代表成功。", 36 "type": "number" 37 }, 38 "result": { 39 "description": "意图调用返回的数据,如果无数据则返回空。", 40 "type": "object" 41 } 42 } 43 } 44} 45