1{ 2 "intentName": "SearchHospital", 3 "intentVersion": "1.0.1", 4 "llmDescription": "搜索医院", 5 "keywords": ["SearchHospital"], 6 "domain": "HealthDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "city", 12 "district", 13 "keywords" 14 ] 15 }, 16 "required": [ 17 "city" 18 ], 19 "properties": { 20 "city": { 21 "description": "体检中心所在城市。", 22 "type": "string" 23 }, 24 "district": { 25 "description": "所在区域。", 26 "type": "string" 27 }, 28 "keywords": { 29 "description": "关键字。", 30 "type": "string" 31 } 32 } 33 }, 34 "result": { 35 "type": "object", 36 "propertyNames": { 37 "enum": [ 38 "entityId", 39 "entityName", 40 "hospitalName", 41 "description", 42 "tags", 43 "openingTime", 44 "hospitalAddress", 45 "distance", 46 "logoURL" 47 ] 48 }, 49 "required": [ 50 "entityId", 51 "entityName", 52 "hospitalName", 53 "description" 54 ], 55 "properties": { 56 "entityId": { 57 "description": "数据唯一标识。", 58 "type": "string" 59 }, 60 "entityName": { 61 "description": "实体名称。", 62 "type": "string" 63 }, 64 "hospitalName": { 65 "description": "医院名称。", 66 "type": "string" 67 }, 68 "description": { 69 "description": "医院描述。", 70 "type": "string" 71 }, 72 "tags": { 73 "description": "标签。", 74 "type": "array" 75 }, 76 "openingTime": { 77 "description": "营业时间描述。", 78 "type": "string" 79 }, 80 "hospitalAddress": { 81 "description": "医院地址。", 82 "type": "string" 83 }, 84 "distance": { 85 "description": "距离,单位米,依赖入参传入经纬度信息。", 86 "type": "number" 87 }, 88 "logoURL": { 89 "description": "图片路径。", 90 "type": "string" 91 } 92 } 93 } 94} 95