Sha256: b29af9971e33c5513cd8fc73cca0c98c7e9055074424e68a54e3efbd28973e05
Contents?: true
Size: 941 Bytes
Versions: 1
Compression:
Stored size: 941 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 :DeliveryMethod, 'mida_vocabulary/vocabularies/schemaorg/deliverymethod' # An agent tracks an object for updates.Related actions:FollowAction: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.SubscribeAction: Unlike SubscribeAction, TrackAction refers to the interest on the location of innanimate objects. class TrackAction < Mida::Vocabulary itemtype %r{http://schema.org/TrackAction}i include_vocabulary Mida::SchemaOrg::Action include_vocabulary Mida::SchemaOrg::Thing # A sub property of instrument. The method of delivery has_many 'deliveryMethod' do extract Mida::SchemaOrg::DeliveryMethod 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/trackaction.rb |