SearchParamType

public enum SearchParamType: String

Data types allowed to be used for search parameters.

URL: http://hl7.org/fhir/search-param-type ValueSet: http://hl7.org/fhir/ValueSet/search-param-type

  • Search parameter SHALL be a number (a whole number, or a decimal).

    Declaration

    Swift

    case number = "number"
  • Search parameter is on a date/time. The date format is the standard XML format, though other formats may be supported.

    Declaration

    Swift

    case date = "date"
  • Search parameter is a simple string, like a name part. Search is case-insensitive and accent-insensitive. May match just the start of a string. String parameters may contain spaces.

    Declaration

    Swift

    case string = "string"
  • Search parameter on a coded element or identifier. May be used to search through the text, displayname, code and code/codesystem (for codes) and label, system and key (for identifier). Its value is either a string or a pair of namespace and value, separated by a |, depending on the modifier used.

    Declaration

    Swift

    case token = "token"
  • A reference to another resource.

    Declaration

    Swift

    case reference = "reference"
  • A composite search parameter that combines a search on two values together.

    Declaration

    Swift

    case composite = "composite"
  • A search parameter that searches on a quantity.

    Declaration

    Swift

    case quantity = "quantity"
  • uri

    A search parameter that searches on a URI (RFC 3986).

    Declaration

    Swift

    case uri = "uri"