Sha256: 5b07be94856c1b58a05eb3f5dfc2ff0c1a965a7e66f9ab121804893947529b5a
Contents?: true
Size: 864 Bytes
Versions: 3
Compression:
Stored size: 864 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :InformAction, 'mida_vocabulary/vocabularies/schemaorg/informaction' autoload :CommunicateAction, 'mida_vocabulary/vocabularies/schemaorg/communicateaction' autoload :Action, 'mida_vocabulary/vocabularies/schemaorg/action' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' # The act of notifying someone that a future event/action is going to happen as expected.Related actions:CancelAction: The antagonym of ConfirmAction. class ConfirmAction < Mida::Vocabulary itemtype %r{http://schema.org/ConfirmAction}i include_vocabulary Mida::SchemaOrg::InformAction include_vocabulary Mida::SchemaOrg::CommunicateAction include_vocabulary Mida::SchemaOrg::Action include_vocabulary Mida::SchemaOrg::Thing end end end
Version data entries
3 entries across 2 versions & 1 rubygems