Sha256: b42651d52b329b00c6e59eea13663597c4a45be9f33ab3470a91d0ba9383c300
Contents?: true
Size: 809 Bytes
Versions: 34
Compression:
Stored size: 809 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).meta(omittable: true) # 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
34 entries across 34 versions & 1 rubygems