Sha256: 47f54d68f96629a55cb7ed23308ccb68a3bcd656b1effa4572b006672272c33e

Contents?: true

Size: 849 Bytes

Versions: 1

Compression:

Stored size: 849 Bytes

Contents

require 'mida_vocabulary/vocabulary'

module Mida
  module SchemaOrg

    autoload :Action, 'mida_vocabulary/vocabularies/schemaorg/action'
    autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing'
    autoload :Review, 'mida_vocabulary/vocabularies/schemaorg/review'

    # The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.
    class ReviewAction < Mida::Vocabulary
      itemtype %r{http://schema.org/ReviewAction}i
      include_vocabulary Mida::SchemaOrg::Action
      include_vocabulary Mida::SchemaOrg::Thing

      # A sub property of result. The review that resulted in the performing of the action.
      has_many 'resultReview' do
        extract Mida::SchemaOrg::Review
        extract Mida::DataType::Text
      end
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mida_vocabulary-0.2.2 lib/mida_vocabulary/vocabularies/schemaorg/reviewaction.rb