CDA to FHIR converter takes a CDA/CCD document as input. Parse the content to a FHIR Bundle.
This library currently support the follow sections from CDA document:
- Header
- Allergy Concern
To add more sections, please submit a request.
The Xml serializer takes an XDocument as input parameter and returns a FHIR Bundle instance.
var xml = XDocument.Load("test.xml");
var bundle = new CdaParser().Convert(xml);