$:.push 'lib'; require 'transcriber' class Entry < Transcriber::Resource property :id, type: Integer end class Root < Transcriber::Resource embeds_many :items, class_name: :entry end @root = Root.parse({items: [{id: 2000}]}).first puts "root: #{@root.inspect}" puts "resource: #{@root.resource}"