Apply doc update suggestions from code review
Co-authored-by: Ken Stevens <khstevens@gmail.com>
This commit is contained in:
parent
f5f7f2df14
commit
af461cd343
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
type: add
|
||||
issue: 2177
|
||||
title: "Refactoring of the Enterprise Master Patient Index solution to a Master Data Management solution. The new MDM solution supports other FHIR resources where EMPI only allowed Person resource to be used. For example, if MDM is occurring on a patient, we will create a new Patient, and tag that patient as a Golden Record. This means that several things have changed:
|
||||
title: "Redesigning the Enterprise Master Patient Index solution to a Master Data Management solution. The new MDM solution supports other FHIR resources where EMPI only allowed Person resource to be used. For example, if MDM is occurring on a patient, we will create a new Patient, and tag that patient as a Golden Record. This means that several things have changed:
|
||||
<ul>
|
||||
<li>Provider methods that pointed to type of Person are now server-level operations in which you specify a resource type.</li>
|
||||
<li>Link updating and querying no longer rely on Person IDs, but instead on arbitrary resource ids, depending on the resource type you are referring to in MDM.</li>
|
||||
|
|
|
@ -16,7 +16,7 @@ To get up and running with HAPI MDM, either enable it using the `hapi.properties
|
|||
|
||||
Once MDM is enabled, the next thing you will want to do is configure your [MDM Rules](/hapi-fhir/docs/server_jpa_mdm/mdm_rules.html)
|
||||
|
||||
HAPI MDM watches for incoming target resources and automatically links them to the appropriate Golden resources based on these rules. For example, if the rules indicate that any two patients with the same SSN, birthdate and first and last name are the same patients, then two different Patient resources with matching values for these attributes will automatically be linked to the same Golden Patient resource. If no existing resources match the incoming Patient, then a new Golden Patient resource will be created and linked to the incoming Patient.
|
||||
HAPI MDM watches for incoming target resources and automatically links them to the appropriate Golden Resources based on these rules. For example, if the rules indicate that any two patients with the same SSN, birthdate and first and last name are the same patient, then two different Patient resources with matching values for these attributes will automatically be linked to the same Golden Patient resource. If no existing resources match the incoming Patient, then a new Golden Patient resource will be created and linked to the incoming Patient.
|
||||
|
||||
Based on how well two patients match, the MDM Rules may link the Patient to the Golden Patient as a MATCH or a
|
||||
POSSIBLE_MATCH. In the case of a POSSIBLE_MATCH, a user will need to later use [MDM Operations](/hapi-fhir/docs/server_jpa_mdm/mdm_operations.html) to either confirm the link as a MATCH, or mark the link as a NO_MATCH in which case HAPI MDM will create a new Person for them.
|
||||
|
|
Loading…
Reference in New Issue