1{ 2 "intentName": "ViewHospital", 3 "intentVersion": "1.0.1", 4 "llmDescription": "查看医院", 5 "keywords": ["ViewHospital"], 6 "domain": "HealthDomain", 7 "parameters": { 8 "type": "object", 9 "propertyNames": { 10 "enum": [ 11 "entityId" 12 ], 13 "properties": { 14 "entityId": { 15 "description": "数据唯一标识", 16 "type": "string", 17 "maxLength": 64 18 } 19 } 20 }, 21 "required": [ 22 "entityId" 23 ] 24 }, 25 "result": { 26 "type": "object", 27 "propertyNames": { 28 "enum": [ 29 "code", 30 "result" 31 ] 32 }, 33 "required": [ 34 "code", 35 "result" 36 ], 37 "properties": { 38 "code": { 39 "description": "意图调用返回的结果码,0代表成功。", 40 "type": "number" 41 }, 42 "result": { 43 "description": "意图调用返回的数据,如果无数据则返回空。", 44 "type": "object" 45 } 46 } 47 } 48} 49