SearchComparator

public enum SearchComparator: String

What Search Comparator Codes are supported in search

URL: http://hl7.org/fhir/search-comparator ValueSet: http://hl7.org/fhir/ValueSet/search-comparator

  • eq

    the value for the parameter in the resource is equal to the provided value

    Declaration

    Swift

    case eq = "eq"
  • ne

    the value for the parameter in the resource is not equal to the provided value

    Declaration

    Swift

    case ne = "ne"
  • gt

    the value for the parameter in the resource is greater than the provided value

    Declaration

    Swift

    case gt = "gt"
  • lt

    the value for the parameter in the resource is less than the provided value

    Declaration

    Swift

    case lt = "lt"
  • ge

    the value for the parameter in the resource is greater or equal to the provided value

    Declaration

    Swift

    case ge = "ge"
  • le

    the value for the parameter in the resource is less or equal to the provided value

    Declaration

    Swift

    case le = "le"
  • sa

    the value for the parameter in the resource starts after the provided value

    Declaration

    Swift

    case sa = "sa"
  • eb

    the value for the parameter in the resource ends before the provided value

    Declaration

    Swift

    case eb = "eb"
  • ap

    the value for the parameter in the resource is approximately the same to the provided value.

    Declaration

    Swift

    case ap = "ap"