We are mapping Manchester Triage System in the resource RiskAssessment as the example below:
{
“resourceType”: “RiskAssessment”,
“id”: “{{uid}}”,
“status”: “final”,
“code”: {
“coding”: [
{
“system”: “http://snomed.info/sct”,
“code”: “713011005”,
“display”: “Assessment using Manchester Triage System (procedure)”
}
]
},
“subject”: {
“reference”: “{{patientId}}”
},
“encounter”: {
“reference”: “{{encounterId}}”
},
“occurrenceDateTime”: “{{encounterDate}}”,
“prediction”: [
{
“outcome”: {
“system”: “http://snomed.info/sct”,
“code”: “419620001”,
“display”: “Death (event)”
},
“qualitativeRisk”: {
“system”: “http://terminology.hl7.org/CodeSystem/risk-probability”,
“code”: “high”,
“display”: “High likelihood”
}
}
]
}
As you can see, we are summarizing the outcome as “Death event” and the qualitativeRisk as a representative of Manchester Triage System’s colors/level.
We’d like to know if there is something wrong with our model, can you see any problem?