Sha256: 669d175e9d1c318c1f4f9d602ffcd1d6da0063dac86ed7b4c8a18f2d344c8fb1
Contents?: true
Size: 799 Bytes
Versions: 1
Compression:
Stored size: 799 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([]) # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cocina-models-0.63.0 | lib/cocina/models/descriptive_value_language.rb |