AppointmentStatus

public enum AppointmentStatus: String

The free/busy status of an appointment.

URL: http://hl7.org/fhir/appointmentstatus ValueSet: http://hl7.org/fhir/ValueSet/appointmentstatus

  • None of the participant(s) have finalized their acceptance of the appointment request, and the start/end time may not be set yet.

    Declaration

    Swift

    case proposed = "proposed"
  • Some or all of the participant(s) have not finalized their acceptance of the appointment request.

    Declaration

    Swift

    case pending = "pending"
  • All participant(s) have been considered and the appointment is confirmed to go ahead at the date/times specified.

    Declaration

    Swift

    case booked = "booked"
  • Some of the patients have arrived.

    Declaration

    Swift

    case arrived = "arrived"
  • This appointment has completed and may have resulted in an encounter.

    Declaration

    Swift

    case fulfilled = "fulfilled"
  • The appointment has been cancelled.

    Declaration

    Swift

    case cancelled = "cancelled"
  • Some or all of the participant(s) have not/did not appear for the appointment (usually the patient).

    Declaration

    Swift

    case noshow = "noshow"
  • This instance should not have been part of this patient’s medical record.

    Declaration

    Swift

    case enteredInError = "entered-in-error"