ConceptMapEquivalence

public enum ConceptMapEquivalence: String

The degree of equivalence between concepts.

URL: http://hl7.org/fhir/concept-map-equivalence ValueSet: http://hl7.org/fhir/ValueSet/concept-map-equivalence

  • The concepts are related to each other, and have at least some overlap in meaning, but the exact relationship is not known

    Declaration

    Swift

    case relatedto = "relatedto"
  • The definitions of the concepts mean the same thing (including when structural implications of meaning are considered) (i.e. extensionally identical).

    Declaration

    Swift

    case equivalent = "equivalent"
  • The definitions of the concepts are exactly the same (i.e. only grammatical differences) and structural implications of meaning are identical or irrelevant (i.e. intentionally identical).

    Declaration

    Swift

    case equal = "equal"
  • The target mapping is wider in meaning than the source concept.

    Declaration

    Swift

    case wider = "wider"
  • The target mapping subsumes the meaning of the source concept (e.g. the source is-a target).

    Declaration

    Swift

    case subsumes = "subsumes"
  • The target mapping is narrower in meaning than the source concept. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when attempting to use these mappings operationally.

    Declaration

    Swift

    case narrower = "narrower"
  • The target mapping specializes the meaning of the source concept (e.g. the target is-a source).

    Declaration

    Swift

    case specializes = "specializes"
  • The target mapping overlaps with the source concept, but both source and target cover additional meaning, or the definitions are imprecise and it is uncertain whether they have the same boundaries to their meaning. The sense in which the mapping is narrower SHALL be described in the comments in this case, and applications should be careful when attempting to use these mappings operationally.

    Declaration

    Swift

    case inexact = "inexact"
  • There is no match for this concept in the destination concept system.

    Declaration

    Swift

    case unmatched = "unmatched"
  • This is an explicit assertion that there is no mapping between the source and target concept.

    Declaration

    Swift

    case disjoint = "disjoint"