require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :Action, 'mida_vocabulary/vocabularies/schemaorg/action' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' # The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments. class DrawAction < Mida::Vocabulary itemtype %r{http://schema.org/DrawAction}i include_vocabulary Mida::SchemaOrg::Action include_vocabulary Mida::SchemaOrg::Thing end end end