XPathUsageType

public enum XPathUsageType: String

How a search parameter relates to the set of elements returned by evaluating its xpath query.

URL: http://hl7.org/fhir/search-xpath-usage ValueSet: http://hl7.org/fhir/ValueSet/search-xpath-usage

  • The search parameter is derived directly from the selected nodes based on the type definitions.

    Declaration

    Swift

    case normal = "normal"
  • The search parameter is derived by a phonetic transform from the selected nodes.

    Declaration

    Swift

    case phonetic = "phonetic"
  • The search parameter is based on a spatial transform of the selected nodes.

    Declaration

    Swift

    case nearby = "nearby"
  • The search parameter is based on a spatial transform of the selected nodes, using physical distance from the middle.

    Declaration

    Swift

    case distance = "distance"
  • The interpretation of the xpath statement is unknown (and can’t be automated).

    Declaration

    Swift

    case other = "other"