DeviceRequestIntent

public enum DeviceRequestIntent : String, Equatable, Codable, Sendable

This code system http://hl7.org/fhir/request-intent defines the following codes:

  • a suggestion made by someone/something that does not have an intention to ensure it occurs and without providing an authorization to act.

    Declaration

    Swift

    case proposal
  • The request represents an intention to ensure something occurs without providing an authorization for others

    Declaration

    Swift

    case plan
  • The request represents a legally binding instruction authored by a Patient or RelatedPerson.

    Declaration

    Swift

    case directive
  • The request represents a request/demand and authorization for action by a Practitioner.

    Declaration

    Swift

    case order
  • The request represents an original authorization for action.

    Declaration

    Swift

    case originalOrder = "original-order"
  • The request represents an automatically generated supplemental authorization for action based on a parent authorization together with initial results of the action taken against that parent authorization.

    Declaration

    Swift

    case reflexOrder = "reflex-order"
  • The request represents the view of an authorization instantiated by a fulfilling system representing the details of the fulfiller’s intention to act upon a submitted order.

    Declaration

    Swift

    case fillerOrder = "filler-order"
  • An order created in fulfillment of a broader order that represents the authorization for a single activity occurrence. E.g. The administration of a single dose of a drug.

    Declaration

    Swift

    case instanceOrder = "instance-order"
  • The request represents a component or option for a RequestGroup among a set of requests. Refer to [[[RequestGroup]]] for additional information on how this status is used.

    Declaration

    Swift

    case option