Singularity / data /datasets /healthcare.json
SlappAI's picture
AGDB Upload
70fa1c0
{
"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"
}
}
]
}