require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :CreativeWork, 'mida_vocabulary/vocabularies/schemaorg/creativework' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' # A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document. class Question < Mida::Vocabulary itemtype %r{http://schema.org/Question}i include_vocabulary Mida::SchemaOrg::CreativeWork include_vocabulary Mida::SchemaOrg::Thing end end end