module Fetcher class Microdata class PersonUser < Fetcher::Microdata def initialize *args if args.length == 1 super *args else raise ArgumentError, "Wrong number of arguments #{args.length} and 3 needed" end @_type = 'http://schema.org/Person/User' end attribute :additionalType attribute :id attribute :name attribute :dateRegistered attribute :description attribute :url end end end