Unduplicate Golden Resources
The Healthcare Data Repository FHIR server uses the $mdm-not-duplicate operation to mark duplicate Golden Resources as not duplicates. This operation takes the following parameters:
Table 12-4 Parameters to Mark Golden Resources as Not Duplicates
Name | Type | Description |
---|---|---|
goldenResourceId | String | ID of the Golden Resource (e.g. Golden Patient Resource). |
resourceid | String | ID of the source resource that has a possible duplicate link to. |
Example:
POST : http://localhost:7001/oracle-fhir-server/fhir/$mdm-not-duplicate
Request Body
{
"resourceType": "Parameters",
"parameter": [ {
"name": "goldenResourceId",
"valueString": "Patient/50006"
}, {
"name": "resourceId",
"valueString": "Patient/50005"
} ]
}
Response
{
"resourceType": "Parameters",
"parameter": [ {
"name": "success",
"valueBoolean": true
} ]
}
Parent topic: MDM Operations