File size: 4,284 Bytes
70fa1c0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | {
"domains": {
"Healthcare": {
"domain": true,
"label": "Healthcare"
},
"Hospitals": {
"type": "Facility",
"label": "Hospitals",
"inherits_from": "Healthcare"
},
"Public Health": {
"type": "Service",
"label": "Public Health",
"inherits_from": "Healthcare"
},
"Mental Health": {
"type": "Service",
"label": "Mental Health",
"inherits_from": "Healthcare"
},
"Medical Services": {
"type": "Service",
"label": "Medical Services",
"inherits_from": "Healthcare"
},
"Healthcare Systems": {
"type": "Service",
"label": "Healthcare Systems",
"inherits_from": "Healthcare"
},
"Emergency Services": {
"type": "Service",
"label": "Emergency Services",
"inherits_from": "Healthcare"
}
},
"entities": {
"doctor": {
"type": "Professional",
"label": "Doctor",
"inherits_from": "Medical Services",
"attributes": {
"specialization": "Cardiology",
"experience": 15,
"associated_hospital": "Central Hospital"
}
},
"patient": {
"type": "Person",
"label": "Patient",
"inherits_from": "Public Health",
"attributes": {
"age": 45,
"condition": "Hypertension",
"insurance_status": "Active"
}
},
"hospital": {
"type": "Facility",
"label": "Hospital",
"inherits_from": "Hospitals",
"attributes": {
"location": "City Center",
"capacity": 300,
"services_offered": ["ER", "Cardiology", "Mental Health"]
}
},
"medical_procedure": {
"type": "Procedure",
"label": "Medical Procedure",
"inherits_from": "Medical Services",
"attributes": {
"description": "Cardiac Surgery",
"risk_level": "High"
}
},
"emergency_response_unit": {
"type": "Service Unit",
"label": "Emergency Response Unit",
"inherits_from": "Emergency Services",
"attributes": {
"response_time": 10,
"availability": "24/7"
}
}
},
"relationships": [
{
"source": "Hospitals",
"target": "Healthcare",
"attributes": {
"relationship": "part_of"
}
},
{
"source": "Public Health",
"target": "Healthcare",
"attributes": {
"relationship": "part_of"
}
},
{
"source": "Mental Health",
"target": "Healthcare",
"attributes": {
"relationship": "part_of"
}
},
{
"source": "Medical Services",
"target": "Healthcare",
"attributes": {
"relationship": "part_of"
}
},
{
"source": "Emergency Services",
"target": "Healthcare",
"attributes": {
"relationship": "part_of"
}
},
{
"source": "doctor",
"target": "hospital",
"attributes": {
"relationship": "works_in"
}
},
{
"source": "patient",
"target": "medical_procedure",
"attributes": {
"relationship": "undergoes"
}
},
{
"source": "hospital",
"target": "Mental Health",
"attributes": {
"relationship": "provides"
}
},
{
"source": "emergency_response_unit",
"target": "Emergency Services",
"attributes": {
"relationship": "assigned_to"
}
}
]
} |