lib/cocina/models/stanford_access.rb in cocina-models-0.67.1 vs lib/cocina/models/stanford_access.rb in cocina-models-0.68.0

- old
+ new

@@ -2,14 +2,14 @@ module Cocina module Models class StanfordAccess < Struct # Access level. - attribute :access, Types::Strict::String.enum('stanford') + attribute :view, Types::Strict::String.enum('stanford') # Download access level. attribute :download, Types::Strict::String.enum('stanford') - # If access is "location-based", which location should have access. - attribute :readLocation, Types::Strict::String.optional.enum('').meta(omittable: true) + # Not used for this access type, must be null. + attribute :location, Types::Strict::String.optional.enum('').meta(omittable: true) attribute :controlledDigitalLending, Types::Strict::Bool.enum(false).meta(omittable: true) end end end