require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :MedicalEntity, 'mida_vocabulary/vocabularies/schemaorg/medicalentity' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' # A utility class that serves as the umbrella for a number of 'intangible' things in the medical space. class MedicalIntangible < Mida::Vocabulary itemtype %r{http://schema.org/MedicalIntangible}i include_vocabulary Mida::SchemaOrg::MedicalEntity include_vocabulary Mida::SchemaOrg::Thing end end end