ConditionState

public enum ConditionState: String

Enumeration indicating whether the condition is currently active, inactive, or has been resolved.

URL: http://hl7.org/fhir/condition-state ValueSet: http://hl7.org/fhir/ValueSet/condition-state

  • The condition is active.

    Declaration

    Swift

    case active = "active"
  • The condition is inactive, but not resolved.

    Declaration

    Swift

    case inactive = "inactive"
  • The condition is resolved.

    Declaration

    Swift

    case resolved = "resolved"