Sha256: 68e541ba023d50d3957afb26885d0de94cbf5a923e93757477763d20b53a412b
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true module Cocina module Models class Event < Struct attribute :structuredValue, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true) # 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 :parallelEvent, Types::Strict::Array.of(DescriptiveParallelEvent).meta(omittable: true) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cocina-models-0.51.0 | lib/cocina/models/event.rb |
cocina-models-0.50.0 | lib/cocina/models/event.rb |