Sha256: b680a714ead3e1dd49fecf2c24e7ef14ec3f84a1f547a25a71d79660671ab519
Contents?: true
Size: 1.04 KB
Versions: 14
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true module Cocina module Models class Contributor < Struct attribute :name, Types::Strict::Array.of(DescriptiveValue).meta(omittable: true) # Entity type of the contributor (person, organization, etc.). attribute :type, Types::Strict::String.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.meta(omittable: true) attribute :role, 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) # URL or other pointer to the location of the contributor information. attribute :valueAt, Types::Strict::String.meta(omittable: true) attribute :parallelContributor, Types::Strict::Array.of(DescriptiveParallelContributor).meta(omittable: true) end end end
Version data entries
14 entries across 14 versions & 1 rubygems