Is it Possible to convert a complete CCDA xml to a FHIR based xml? I would like to convert an complete CCDA xml to a FHIR compatible XML through Mirthconnect interface. I like to have sample messages that shows how a complete CCDA is been transformed to FHIR based XML, I googled and ended up with no answers. It would be great if you guys help me.
1
There are 1 best solutions below
Related Questions in MIRTH
- NCPDP D.0 integration using mirth Connect
- Using a Mirth Transformer to loop through multiple PID.3 Segments
- Perl : UTF8 characters gets distorted while trasnmitting
- Testing (C1+C3) on Cypress 3.0.3 throws error on QRDA 1 which are available for QRDA 3
- Mirth performance benchmark
- issue in writing multiple segments in the database through Mirth
- Mirth 3.5.0 - Importing Code Libraries via REST API
- How to insert created_timestamp in MongoDB using its Java Driver for Javascript
- How to get values from a field in Mongo, using its Java Driver (3.5.0)
- Java HotSpot(TM) 64-Bit Server VM warning: Insufficient space for shared memory file
- Mirth Connect Script to Re-process Errors?
- mirth can connect with Cache,sybase,informix database?
- Mirth Connect: Javascript Reader - Error listing files in dir (shared folder)
- Mirth Property File Corrupted on Editing using powershell
- Losing custom segments in batch file transformation
Related Questions in HL7-FHIR
- Implementing Queue system using List FHIR Resource
- Representing Encounter-related charges
- Will FHIR and HL7 v3 be used concurrently? Or is FHIR to replace v3?
- Traversing the Location hierarchy
- FHIR contained practionner in generalPractitioner
- Multiple referring pratictioners in an FHIR Encounter
- FHIR json schema
- How to Send FHIR HL7 patient resource json message with sliced identifier element?
- Write Vital on Smart on FHIR
- How can I override the @context when loading json-ld in Jena
- Does FHIR support self defined resource?
- is there some FHIR test server with continious integration http://hl7-fhir.github.io/ release?
- Can FHIR MedicationPrescription.dosageInstruction.doseQuantity handle a dose range?
- How to persist a bundle with resources not still created on my fhir server?
- java.text.ParseException: The date '2013-12-11T14:45:00.000-04:00' is not a valid Date Time Format
Related Questions in C-CDA
- Testing (C1+C3) on Cypress 3.0.3 throws error on QRDA 1 which are available for QRDA 3
- Value in code when actually code is unknow, ccd document
- Is it Possible to Parsing a complete CCDA xml file Using Go?
- Import cypress data to EHR for QRDA category 1(CQM - capture and export) meaningful use
- Parsing a Continuity of Care Document (CCD) with T-SQL
- C-CDA validation fails because of "Unknown type" in my server but not in standalone project
- Convert from C-CDA to FHIR using Azure convert-data api
- Number of Unique sections in CDA schema
- CCD CDA to database using a scripting language
- Displaying XML in human readable format
- How to implement ExtractCCDAAttributes processor in Apache Nifi?
- Extracting CCD document values using MDHT via Mirth
- How to identify unique entries in ccda file?
- CCDA to FHIR xml
- Integration of CCDA using Mirth out of CSV files
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Strictly speaking, C-CDA is consolidated CDA. It is an IG - Implementation Guide. In simple terms, there are various IG for generating a CDA document HITSP/C83 for one is an example and there are several others. The main problem with all these seperate IG is that they are not uniform. C-CDA was created to bring uniformity of data. This presentation here is a good place to start. Basically, it says you got to have at least 4 mandatory section in your CCD, and rest optional sections. It entirely depends on your use case.
Secondly, You need to download a copy of a valid C-CDA file from this site. Let's take inpatient summary document. So that would be your target document, and consider it as a template.
Third, You got to tell your engineering team or if you are the developer yourself, then you need to build logic to extract and place information into that template. This is an iterative process, and everytime you need to validate your developed document, against the validator (site given above).
Until and unless the validator says 0 errors present, your document is not ready.
So, There does not exist a ready made code or logic that you can just plug and play and start developing C-CDA documents.