Sha256: 766b46743851790b5cbed64b6a35b5abc0ebf8ac3b4cd5c3f0ccd701d4815fac

Contents?: true

Size: 806 Bytes

Versions: 24

Compression:

Stored size: 806 Bytes

Contents

# frozen_string_literal: true

module Cocina
  module Models
    class DescriptiveValueLanguage < Struct
      # Code representing the standard or encoding.
      attribute :code, Types::Strict::String.meta(omittable: true)
      # URI for the standard or encoding.
      attribute :uri, Types::Strict::String.meta(omittable: true)
      # String describing the standard or encoding.
      attribute :value, Types::Strict::String.meta(omittable: true)
      attribute :note, Types::Strict::Array.of(DescriptiveValue).default([].freeze)
      # The version of the standard or encoding.
      attribute :version, Types::Strict::String.meta(omittable: true)
      attribute :source, Source.optional.meta(omittable: true)
      attribute :valueScript, Standard.optional.meta(omittable: true)
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
cocina-models-0.65.1 lib/cocina/models/descriptive_value_language.rb
cocina-models-0.65.0 lib/cocina/models/descriptive_value_language.rb
cocina-models-0.64.0 lib/cocina/models/descriptive_value_language.rb
cocina-models-0.63.1 lib/cocina/models/descriptive_value_language.rb