ConditionVerificationStatus
public enum ConditionVerificationStatus: String
The verification status to support or decline the clinical status of the condition or diagnosis.
URL: http://hl7.org/fhir/condition-ver-status ValueSet: http://hl7.org/fhir/ValueSet/condition-ver-status
-
This is a tentative diagnosis - still a candidate that is under consideration.
Declaration
Swift
case provisional = "provisional"
-
One of a set of potential (and typically mutually exclusive) diagnoses asserted to further guide the diagnostic process and preliminary treatment.
Declaration
Swift
case differential = "differential"
-
There is sufficient diagnostic and/or clinical evidence to treat this as a confirmed condition.
Declaration
Swift
case confirmed = "confirmed"
-
This condition has been ruled out by diagnostic and clinical evidence.
Declaration
Swift
case refuted = "refuted"
-
The statement was entered in error and is not valid.
Declaration
Swift
case enteredInError = "entered-in-error"
-
The condition status is unknown. Note that
unknown
is a value of last resort and every attempt should be made to provide a meaningful value other thanunknown
.Declaration
Swift
case unknown = "unknown"