# frozen_string_literal: true module Cocina module Models class DRO < Struct include Validatable include Checkable TYPES = ['http://cocina.sul.stanford.edu/models/object.jsonld', 'http://cocina.sul.stanford.edu/models/3d.jsonld', 'http://cocina.sul.stanford.edu/models/agreement.jsonld', 'http://cocina.sul.stanford.edu/models/book.jsonld', 'http://cocina.sul.stanford.edu/models/document.jsonld', 'http://cocina.sul.stanford.edu/models/geo.jsonld', 'http://cocina.sul.stanford.edu/models/image.jsonld', 'http://cocina.sul.stanford.edu/models/page.jsonld', 'http://cocina.sul.stanford.edu/models/photograph.jsonld', 'http://cocina.sul.stanford.edu/models/manuscript.jsonld', 'http://cocina.sul.stanford.edu/models/map.jsonld', 'http://cocina.sul.stanford.edu/models/media.jsonld', 'http://cocina.sul.stanford.edu/models/track.jsonld', 'http://cocina.sul.stanford.edu/models/webarchive-binary.jsonld', 'http://cocina.sul.stanford.edu/models/webarchive-seed.jsonld'].freeze # The version of Cocina with which this object conforms. # example: 1.2.3 attribute :cocinaVersion, Types::Strict::String.default(Cocina::Models::VERSION) # The content type of the DRO. Selected from an established set of values. attribute :type, Types::Strict::String.enum(*DRO::TYPES) # example: druid:bc123df4567 attribute :externalIdentifier, Types::Strict::String # Primary processing label (can be same as title) for a DRO. attribute :label, Types::Strict::String # Version for the DRO within SDR. attribute :version, Types::Strict::Integer attribute(:access, DROAccess.default { DROAccess.new }) attribute(:administrative, Administrative.default { Administrative.new }) attribute(:description, Description.default { Description.new }) attribute :identification, Identification.optional.meta(omittable: true) attribute :structural, DROStructural.optional.meta(omittable: true) attribute :geographic, Geographic.optional.meta(omittable: true) end end end