Manchester Triage System as RiskAssessment

Hello,

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?

Thank you.

1 Like

Presume {{patientId}} and {{encounterId}} will resolve to Patient/x and Encounter/y respectively?

Other than that, I think it looks valid

1 Like

outcome and qualitativeRisk needs “coding” data element.- does this work for you?

{
“resourceType”: “RiskAssessment”,
“id”: “68519946”,
“status”: “final”,
“code”: {
“coding”: [
{
“system”: “http://snomed.info/sct”,
“code”: “713011005”,
“display”: “Assessment using Manchester Triage System (procedure)”
}
]
},
“subject”: {
“reference”: “Patient/68519946”
},
“encounter”: {
“reference”: “Encounter/68519946”
},
“occurrenceDateTime”: “2007-12-31”,
“prediction”: [
{
“outcome”: {
“coding”: [
{
“system”: “snomed.info/sct”,
“code”: “419620001”,
“display”: “Death (event)”
}
]
},
“qualitativeRisk”: {
“coding”: [
{
“system”: “http://terminology.hl7.org/CodeSystem/risk-probability”,
“code”: “high”,
“display”: “High likelihood”
}
]
}
}
]
}

1 Like

Looks reasonable. You can try it with one of the public test servers to confirm.

I could post successfully.
http://hapi.fhir.org/baseR4/RiskAssessment/596483/_history/1

1 Like