Stream: implementers
Topic: Convert CDA to FHIR
Miguel Curi (Jun 26 2017 at 15:22):
Hello I am new to FHIR and am trying to implement converting a CDA into a FHIR bundle. I am currently building the FHIR bundle in C# code using this library and am trying to figure out how to build the race part of the patient demographics. I am looking for an example of how to build Hl7.Fhir.Model.Patient with the race extension such as:
{
"url": "http://fhir.org/guides/argonaut/StructureDefinition/argo-race",
"extension": [
{
"url": "ombCategory",
"valueCoding": {
"system": "http://hl7.org/fhir/v3/Race",
"code": "2106-3",
"display": "White",
"userSelected": false
}
},
{
"url": "text",
"valueString": "White"
}
]
}
Any help is appreciated. If there is a better way to transform CDA to FHIR than doing it in code I would be interested in knowing about it. It seems like a common scenario. Thanks.
Miguel.
John Moehrke (Jun 26 2017 at 15:44):
There is a stream dedicated to CDA to FHIR.
Miguel Curi (Jun 26 2017 at 18:18):
Posted in the wrong stream .. sorry. :) Thanks John.
Last updated: Apr 12 2022 at 19:14 UTC