lib/cocina/models/event.rb in cocina-models-0.62.1 vs lib/cocina/models/event.rb in cocina-models-0.63.0
- old
+ new
@@ -1,20 +1,20 @@
# frozen_string_literal: true
module Cocina
module Models
class Event < Struct
- attribute :structuredValue, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
+ attribute :structuredValue, Types::Strict::Array.of(DescriptiveValue).default([])
# Description of the event (creation, publication, etc.).
attribute :type, Types::Strict::String.meta(omittable: true)
# The preferred display label to use for the event in access systems.
attribute :displayLabel, Types::Strict::String.meta(omittable: true)
- attribute :date, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
- attribute :contributor, Types::Strict::Array.of(Contributor).meta(omittable: true)
- attribute :location, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
- attribute :identifier, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
- attribute :note, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true)
+ attribute :date, Types::Strict::Array.of(DescriptiveValue).default([])
+ attribute :contributor, Types::Strict::Array.of(Contributor).default([])
+ attribute :location, Types::Strict::Array.of(DescriptiveValue).default([])
+ attribute :identifier, Types::Strict::Array.of(DescriptiveValue).default([])
+ attribute :note, Types::Strict::Array.of(DescriptiveValue).default([])
attribute :valueLanguage, DescriptiveValueLanguage.optional.meta(omittable: true)
- attribute :parallelEvent, Types::Strict::Array.of(DescriptiveParallelEvent).meta(omittable: true)
+ attribute :parallelEvent, Types::Strict::Array.of(DescriptiveParallelEvent).default([])
end
end
end