I have some medical records files which have this in the header:
ClinicalDocument xsi:schemaLocation="urn:hl7-org:v3 CDA.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:voc="urn:hl7-org:v3/voc" xmlns:sdtc="urn:hl7-org:sdtc" xmlns="urn:hl7-org:v3">
I would like to view them in a human readable format, in any of PDF, Word, or even in Excel.
I can't figure out how to get the appropriate "stylesheet", assuming this is what I am missing.
This is what I have tried:
1) If I open the file in a browser, I get the formatted XML with a message that says "This XML file does not appear to have any style information associated with it. The document tree is shown below."
2) I have tried googling for the file CDA.xsd and I went through this page http://motorcycleguy.blogspot.com/2010/07/where-is-xsd-for-ccd.html which had a couple of links which gave me some large tar files which I couldn't figure out how to use. One of them had a C32_CDA.xsd but when I rename that to CDA.xsd and put it in the same folder as my XML and then try to open it via Excel I cannot get it to display properly.
Any assistance would be most appreciated.
To display an XML document in human-readable format you need (typically) an XSLT stylesheet. It seems your XML is in a vocabulary called HL7 (health level 7?). I don't know much about HL7 except that it has a reputation for being very complex, so it's quite likely that the stylesheets needed will also be very complex.
A quick google showed a project for creating HL7 stylesheets here:
https://wiki.hl7.org/index.php?title=CDA_R2.1_Stylesheet_Project
You might find something there that is useful to you.