EncounterLocationStatus

public enum EncounterLocationStatus: String

The status of the location.

URL: http://hl7.org/fhir/encounter-location-status ValueSet: http://hl7.org/fhir/ValueSet/encounter-location-status

  • The patient is planned to be moved to this location at some point in the future.

    Declaration

    Swift

    case planned = "planned"
  • The patient is currently at this location, or was between the period specified.

    A system may update these records when the patient leaves the location to either reserved, or completed

    Declaration

    Swift

    case active = "active"
  • This location is held empty for this patient.

    Declaration

    Swift

    case reserved = "reserved"
  • The patient was at this location during the period specified.

    Not to be used when the patient is currently at the location

    Declaration

    Swift

    case completed = "completed"