provider element
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<provider 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>
<providerName>...</providerName>
<visitDate>...</visitDate>
<personClass>...</personClass>
<providerId>...</providerId>
</provider>
Example JSON
{
"providerName" : "...",
"visitDate" : "...",
"personClass" : "...",
"providerId" : "...",
"sourceSystem" : "...",
"patientIdentifier" : {
"assigningAuthority" : "...",
"uniqueId" : "..."
},
"surrogateIdentifier" : {
"assigningAuthority" : "...",
"uniqueId" : "..."
},
"dataIdentifier" : {
"uniqueId" : "...",
"systemId" : "..."
},
"object-type" : "...",
"link" : [ {
}, {
} ]
}