Sha256: bf812146cc0e8da62459f0b309eed0bf0612ebdd2444fb5481466cccf51d589b

Contents?: true

Size: 845 Bytes

Versions: 4

Compression:

Stored size: 845 Bytes

Contents

require 'mida_vocabulary/vocabulary'

module Mida
  module SchemaOrg

    autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing'
    autoload :Organization, 'mida_vocabulary/vocabularies/schemaorg/organization'

    # Organization: A business corporation.
    class Corporation < Mida::Vocabulary
      itemtype %r{http://schema.org/Corporation}i
      include_vocabulary Mida::SchemaOrg::Thing
      include_vocabulary Mida::SchemaOrg::Organization

      # The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we reccommend using the controlled vocaulary of Market Identifier Codes (MIC) specified in ISO15022.
      has_many 'tickerSymbol'
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mida_vocabulary-0.1.3 lib/mida_vocabulary/vocabularies/schemaorg/corporation.rb
mida_vocabulary-0.1.2 lib/mida_vocabulary/vocabularies/schemaorg/corporation.rb
mida_vocabulary-0.1.1 lib/mida_vocabulary/vocabularies/schemaorg/corporation.rb
mida_vocabulary-0.1 lib/mida_vocabulary/vocabularies/schemaorg/corporation.rb