GraphCompartmentRule

public enum GraphCompartmentRule: String

How a compartment must be linked

URL: http://hl7.org/fhir/graph-compartment-rule ValueSet: http://hl7.org/fhir/ValueSet/graph-compartment-rule

  • The compartment must be identical (the same literal reference)

    Declaration

    Swift

    case identical = "identical"
  • The compartment must be the same - the record must be about the same patient, but the reference may be different

    Declaration

    Swift

    case matching = "matching"
  • The compartment must be different

    Declaration

    Swift

    case different = "different"
  • The compartment rule is defined in the accompanying FHIRPath expression

    Declaration

    Swift

    case custom = "custom"