class Cow include DataMapper::Resource property :id, Integer, :key => true property :composite, Integer, :key => true property :name, String property :breed, String has n, :baby_cows, :class_name => 'Cow' belongs_to :mother_cow, :class_name => 'Cow' def serialize_properties {:extra => "Extra", :another => 42} end end