GoalRelationshipType

public enum GoalRelationshipType: String

Types of relationships between two goals

URL: http://hl7.org/fhir/goal-relationship-type ValueSet: http://hl7.org/fhir/ValueSet/goal-relationship-type

  • Indicates that the target goal is one which must be met before striving for the current goal

    Declaration

    Swift

    case predecessor = "predecessor"
  • Indicates that the target goal is a desired objective once the current goal is met

    Declaration

    Swift

    case successor = "successor"
  • Indicates that this goal has been replaced by the target goal

    Declaration

    Swift

    case replacement = "replacement"
  • Indicates that the target goal is considered to be a piece of attaining this goal.

    Declaration

    Swift

    case milestone = "milestone"
  • Indicates that the relationship is not covered by one of the pre-defined codes. (An extension may convey more information about the meaning of the relationship.)

    Declaration

    Swift

    case other = "other"