VARPatientDataCollection element
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<VARPatientDataCollection sourceSystem="...">
<object-type>...</object-type>
<atom:link xmlns:atom="http://www.w3.org/2005/Atom">...</atom:link>
<atom:link xmlns:atom="http://www.w3.org/2005/Atom">...</atom:link>
<!--...more "link" elements...-->
<patientIdentifier>
<assigningAuthority>...</assigningAuthority>
<uniqueId>...</uniqueId>
</patientIdentifier>
<surrogateIdentifier>
<assigningAuthority>...</assigningAuthority>
<uniqueId>...</uniqueId>
</surrogateIdentifier>
<dataIdentifier>
<uniqueId>...</uniqueId>
<systemId>...</systemId>
</dataIdentifier>
</VARPatientDataCollection>
Example JSON
{
"sourceSystem" : "...",
"patientIdentifier" : {
"assigningAuthority" : "...",
"uniqueId" : "..."
},
"surrogateIdentifier" : {
"assigningAuthority" : "...",
"uniqueId" : "..."
},
"dataIdentifier" : {
"uniqueId" : "...",
"systemId" : "..."
},
"object-type" : "...",
"link" : [ {
}, {
} ]
}