class Condition < Entry field :type, type: String field :causeOfDeath, type: Boolean field :name, type: String embeds_many :treating_provider, class_name: "Provider" alias :cause_of_death :causeOfDeath alias :cause_of_death= :causeOfDeath= end