Sha256: dfbb38fa6c07f031d865edceedcb6cb341db6022b8bd740cdcf0d2c6a40d34f5
Contents?: true
Size: 949 Bytes
Versions: 1
Compression:
Stored size: 949 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :CommunicateAction, 'mida_vocabulary/vocabularies/schemaorg/communicateaction' autoload :Action, 'mida_vocabulary/vocabularies/schemaorg/action' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' autoload :Event, 'mida_vocabulary/vocabularies/schemaorg/event' # The act of notifying someone of information pertinent to them, with no expectation of a response. class InformAction < Mida::Vocabulary itemtype %r{http://schema.org/InformAction}i include_vocabulary Mida::SchemaOrg::CommunicateAction include_vocabulary Mida::SchemaOrg::Action include_vocabulary Mida::SchemaOrg::Thing # Upcoming or past event associated with this place or organization. Supercedes events. has_many 'event' do extract Mida::SchemaOrg::Event 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/informaction.rb |