Representing CHA₂DS₂-VASc Score in the Synthea Module Builder #1057
-
Currently, I have a task which includes creating patient data fulfilling a pre-defined set of criteria (to be used by an application), which includes having a CHA₂DS₂-VASc Score higher than a specified value. My question regarding this is twofold. First, I am not completely sure about the category of Observation to be used in this case, although having studied the description on the relevant HL7 site, I think survey would be the most appropriate. Second, and perhaps more importantly, I have been provided a SNOMED code (713678009) that is being used by the application to check for this specific criteria (therefore, I am required to use this), however, the Synthea Module Builder will only allow the use of LOINC codes in Observations – which, as far as I am aware, does not exist for this specific concept, the CHA₂DS₂-VASc Score. Is it possible to specify a different code system (SNOMED) to be used here, other than LOINC? Or would I need to somehow post-process the JSON bundle created by Synthea? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I agree, the category of If you hand edit the system to e.g., here is the JSON representation of your image (abridged) "type": "Observation",
"category": "survey",
"unit": "",
"codes": [
{
"system": "LOINC",
"code": 713678009,
"display": "CHAD2DS2-VASc score"
}
], Change the system to be as below, and the engine should export it as SNOMED. "type": "Observation",
"category": "survey",
"unit": "",
"codes": [
{
"system": "SNOMED-CT",
"code": 713678009,
"display": "CHAD2DS2-VASc score"
}
], |
Beta Was this translation helpful? Give feedback.
I agree, the category of
survey
is probably most appropriate.If you hand edit the system to
SNOMED-CT
it should work. The Module Builder editor does not allow this, but the Synthea engine does. So, modify your module by hand.e.g., here is the JSON representation of your image (abridged)
Change the system to be as below, and the engine should export it as SNOMED.