MatchGrade

public enum MatchGrade: String

A Master Patient Index (MPI) assessment of whether a candidate patient record is a match or not.

URL: http://hl7.org/fhir/match-grade ValueSet: http://hl7.org/fhir/ValueSet/match-grade

  • This record meets the matching criteria to be automatically considered as a full match.

    Declaration

    Swift

    case certain = "certain"
  • This record is a close match, but not a certain match. Additional review (e.g. by a human) may be required before using this as a match.

    Declaration

    Swift

    case probable = "probable"
  • This record may be a matching one. Additional review (e.g. by a human) SHOULD be performed before using this as a match.

    Declaration

    Swift

    case possible = "possible"
  • This record is known not to be a match. Note that usually non-matching records are not returned, but in some cases records previously or likely considered as a match may specifically be negated by the matching engine

    Declaration

    Swift

    case certainlyNot = "certainly-not"