Sha256: 7ead3397889bdccf09b576578a42e27833c78ba2d172893f29dda352ee89e7f3
Contents?: true
Size: 1.83 KB
Versions: 2
Compression:
Stored size: 1.83 KB
Contents
# frozen_string_literal: true module Cocina module Models class AdminPolicyDefaultAccess < Struct attribute :access, Types::Strict::String.enum('world', 'stanford', 'location-based', 'citation-only', 'dark').meta(omittable: true) # Available for controlled digital lending. attribute :controlledDigitalLending, Types::Strict::Bool.meta(omittable: true) # The human readable copyright statement that applies # example: Copyright World Trade Organization attribute :copyright, Types::Strict::String.meta(omittable: true) # Download access level. This is used in the transition from Fedora as a way to set a default download level at registration that is copied down to all the files. attribute :download, Types::Strict::String.enum('world', 'stanford', 'location-based', 'none').meta(omittable: true) # If access is "location-based", which location should have access. This is used in the transition from Fedora as a way to set a default readLocation at registration that is copied down to all the files. attribute :readLocation, Types::Strict::String.enum('spec', 'music', 'ars', 'art', 'hoover', 'm&m').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.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.meta(omittable: true) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cocina-models-0.57.0 | lib/cocina/models/admin_policy_default_access.rb |
cocina-models-0.56.1 | lib/cocina/models/admin_policy_default_access.rb |