RequestPriority

public enum RequestPriority: String

Identifies the level of importance to be assigned to actioning the request

URL: http://hl7.org/fhir/request-priority ValueSet: http://hl7.org/fhir/ValueSet/request-priority

  • The request has normal priority

    Declaration

    Swift

    case routine = "routine"
  • The request should be actioned promptly - higher priority than routine

    Declaration

    Swift

    case urgent = "urgent"
  • The request should be actioned as soon as possible - higher priority than urgent

    Declaration

    Swift

    case asap = "asap"
  • The request should be actioned immediately - highest possible priority. E.g. an emergency

    Declaration

    Swift

    case stat = "stat"