If I upload a ccd through the shell manually, I have the option to put in a description which shows up in the "Summary" column of the CCD grid view. If I'm uploading a CCD via the API using code like this:
XmlDocument ccdDocument = new XmlDocument();
ccdDocument.LoadXml(txtMyCCDBlob);
HealthRecordItem ccd = new HealthRecordItem(CCD_THING_GUID, ccdDocument);
How can I populate the property that surfaces in the "Summary" column of the CCD grid view of the Shell? By default, it populates that property with "Continuity of Care Document (CCD)".
FYI: I'm displaying this information in a web site (MiCare).
My Intention for asking this question is two-fold:
1. I'd like to have some descriptive summary information that tells the user which note is most relevant to look at.
2. I'd like to pre-load this summary information in an expandable view where the user doesn't retrieve the full content of the CCD until they click on the summary information they're interested in.