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