Sha256: b1fcdcd2c65cf459a86e9053e53eabdfee03f7b5cf74821f23d3a3adf36183d8
Contents?: true
Size: 1.1 KB
Versions: 19
Compression:
Stored size: 1.1 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 :valueLanguage, DescriptiveValueLanguage.optional.meta(omittable: true) attribute :parallelEvent, Types::Strict::Array.of(DescriptiveParallelEvent).meta(omittable: true) end end end
Version data entries
19 entries across 19 versions & 1 rubygems