lib/health-data-standards/models/communication.rb in health-data-standards-4.2.0 vs lib/health-data-standards/models/communication.rb in health-data-standards-4.3.0

- old
+ new

@@ -1,3 +1,15 @@ class Communication < Entry + # :direction is deprecated as of QDM 5.4 field :direction, type: String + + # QDM 5.4 merges all communication types. + # The following attributes were added for QDM 5.4 + # * category + # * sender + # * recipient + # * medium + field :category, type: Hash + field :sender, type: Hash + field :recipient, type: Hash + field :medium, type: Hash end