Sha256: ca184fac66b9b23fcba808272120b9f0a592a94ef2da1b3d471f1bbf52467289
Contents?: true
Size: 938 Bytes
Versions: 1
Compression:
Stored size: 938 Bytes
Contents
# frozen_string_literal: true module Cocina module Models class AdminPolicyAdministrative < Struct attribute :defaultAccess, AdminPolicyDefaultAccess.optional.meta(omittable: true) attribute :registrationWorkflow, Types::Strict::Array.of(Types::Strict::String).default([].freeze) # An additional workflow to start for objects managed by this admin policy once the end-accession workflow step is complete # example: wasCrawlPreassemblyWF attribute :disseminationWorkflow, Types::Strict::String.meta(omittable: true) attribute :collectionsForRegistration, Types::Strict::Array.of(Types::Strict::String).default([].freeze) # example: druid:bc123df4567 attribute :hasAdminPolicy, Types::Strict::String # example: druid:bc123df4567 attribute :hasAgreement, Types::Strict::String attribute :roles, Types::Strict::Array.of(AccessRole).default([].freeze) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cocina-models-0.66.0 | lib/cocina/models/admin_policy_administrative.rb |