Sha256: c152ffadd956a91e6de6865db3f4dcab86df5397d4221c1fd3bd1c880edd17ab
Contents?: true
Size: 709 Bytes
Versions: 3
Compression:
Stored size: 709 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :WebPage, 'mida_vocabulary/vocabularies/schemaorg/webpage' autoload :CreativeWork, 'mida_vocabulary/vocabularies/schemaorg/creativework' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' # A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs). class QAPage < Mida::Vocabulary itemtype %r{http://schema.org/QAPage}i include_vocabulary Mida::SchemaOrg::WebPage include_vocabulary Mida::SchemaOrg::CreativeWork include_vocabulary Mida::SchemaOrg::Thing end end end
Version data entries
3 entries across 2 versions & 1 rubygems