Sha256: e8d512c4f1403befc39d5f1812a0a101199a9abac79b656c1516c6945b67dad9
Contents?: true
Size: 687 Bytes
Versions: 39
Compression:
Stored size: 687 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class Embargo < Struct # Date when the Collection is released from an embargo. # example: 2029-06-22T07:00:00.000+00:00 attribute :releaseDate, Types::Params::DateTime # Access level that applies when embargo expires. attribute :access, Types::Strict::String.enum('world', 'stanford', 'location-based', 'citation-only', 'dark') # The human readable use and reproduction statement that applies when the embargo expires. # example: These materials are in the public domain. attribute :useAndReproductionStatement, Types::Strict::String.meta(omittable: true) end end end
Version data entries
39 entries across 39 versions & 1 rubygems