lib/cocina/models/language.rb in cocina-models-0.40.1 vs lib/cocina/models/language.rb in cocina-models-0.41.0
- old
+ new
@@ -1,31 +1,29 @@
# frozen_string_literal: true
module Cocina
module Models
class Language < Struct
- attribute :structuredValue, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
- attribute :parallelValue, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
- # String or integer value of the descriptive element.
- attribute :value, Types::Nominal::Any.meta(omittable: true)
- # Type of value provided by the descriptive element.
- attribute :type, Types::Strict::String.meta(omittable: true)
- # Status of the descriptive element value relative to other instances of the element.
- attribute :status, Types::Strict::String.meta(omittable: true)
+ attribute :appliesTo, Types::Strict::Array.of(DescriptiveBasicValue).meta(omittable: true)
# Code value of the descriptive element.
attribute :code, Types::Strict::String.meta(omittable: true)
- # URI value of the descriptive element.
- attribute :uri, Types::Strict::String.meta(omittable: true)
- attribute :standard, Standard.optional.meta(omittable: true)
- attribute :encoding, Standard.optional.meta(omittable: true)
- attribute :source, Source.optional.meta(omittable: true)
# The preferred display label to use for the descriptive element in access systems.
attribute :displayLabel, Types::Strict::String.meta(omittable: true)
- # A term providing information about the circumstances of the statement (e.g., approximate dates).
- attribute :qualifier, Types::Strict::String.meta(omittable: true)
+ attribute :encoding, Standard.optional.meta(omittable: true)
attribute :note, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
- attribute :valueLanguage, DescriptiveValueLanguage.optional.meta(omittable: true)
- attribute :appliesTo, Types::Strict::Array.of(DescriptiveBasicValue).meta(omittable: true)
+ attribute :parallelValue, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
+ # present for mapping to additional schemas in the future and for consistency but not otherwise used
+ attribute :qualifier, Types::Strict::String.meta(omittable: true)
attribute :script, DescriptiveValue.optional.meta(omittable: true)
+ attribute :source, Source.optional.meta(omittable: true)
+ # Status of the contributor relative to other parallel contributors (e.g. the primary author among a group of contributors).
+ attribute :status, Types::Strict::String.enum('primary').meta(omittable: true)
+ attribute :standard, Standard.optional.meta(omittable: true)
+ attribute :structuredValue, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
+ # URI value of the descriptive element.
+ attribute :uri, Types::Strict::String.meta(omittable: true)
+ # Value of the descriptive element.
+ attribute :value, Types::Strict::String.meta(omittable: true)
+ attribute :valueLanguage, DescriptiveValueLanguage.optional.meta(omittable: true)
end
end
end