Sha256: 33a8ff6479713d6f38e91b4beb786597d45af43b41c75ef0d5801bfa1423bbc3

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 KB

Contents

# frozen_string_literal: true

module Cocina
  module Models
    class CollectionAccess < Struct
      # Access level
      attribute :access, Types::Strict::String.default('dark').enum('world', 'dark').meta(omittable: true)
      # The human readable copyright statement that applies
      # example: Copyright World Trade Organization
      attribute :copyright, Types::Strict::String.optional.meta(omittable: true)
      # The human readable use and reproduction statement that applies
      # example: Property rights reside with the repository. Literary rights reside with the creators of the documents or their heirs. To obtain permission to publish or reproduce, please contact the Public Services Librarian of the Dept. of Special Collections (http://library.stanford.edu/spc).
      attribute :useAndReproductionStatement, Types::Strict::String.optional.meta(omittable: true)
      # The license governing reuse of the Collection. Should be an IRI for known licenses (i.e. CC, RightsStatement.org URI, etc.).
      attribute :license, Types::Strict::String.optional.meta(omittable: true)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cocina-models-0.67.1 lib/cocina/models/collection_access.rb
cocina-models-0.67.0 lib/cocina/models/collection_access.rb
cocina-models-0.66.0 lib/cocina/models/collection_access.rb