cocina-models 0.50.0 → 0.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/cocina/models/admin_policy_administrative.rb +3 -0
- data/lib/cocina/models/version.rb +1 -1
- data/openapi.yml +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f26933441485daf9b322a702e2e72955a2632ff9ea840ed4b700a8130361dfb2
|
|
4
|
+
data.tar.gz: 877293aa8b242869413b025634e1c44e52ea1cc9aaf856b82a8986a170fedd0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e6919371f789202c7f17b5c8a6036ab68b3ce1dc4486ec8b1f62cf60a5eb3c4857b424b3a19198c74f4fcc1265e5de32a84085aaa11eaa405f41df13f7728b9
|
|
7
|
+
data.tar.gz: f287df923a3d9bdf37f7c012e5aa222197e953f9e8ed0c86c65df64a5345b402e399b9d6515fc12e5d605f0fc38d7e801393096cdb55d67c856365ef80b8ec34
|
|
@@ -5,6 +5,9 @@ module Cocina
|
|
|
5
5
|
class AdminPolicyAdministrative < Struct
|
|
6
6
|
attribute :defaultObjectRights, Types::Strict::String.default('<?xml version="1.0" encoding="UTF-8"?><rightsMetadata><access type="discover"><machine><world/></machine></access><access type="read"><machine><world/></machine></access><use><human type="useAndReproduction"/><human type="creativeCommons"/><machine type="creativeCommons" uri=""/><human type="openDataCommons"/><machine type="openDataCommons" uri=""/></use><copyright><human/></copyright></rightsMetadata>').meta(omittable: true)
|
|
7
7
|
attribute :registrationWorkflow, Types::Strict::Array.of(Types::Strict::String).meta(omittable: true)
|
|
8
|
+
# An additional workflow to start for objects managed by this admin policy once the end-accession workflow step is complete
|
|
9
|
+
# example: wasCrawlPreassemblyWF
|
|
10
|
+
attribute :disseminationWorkflow, Types::Strict::String.meta(omittable: true)
|
|
8
11
|
attribute :collectionsForRegistration, Types::Strict::Array.of(Types::Strict::String).meta(omittable: true)
|
|
9
12
|
attribute :roles, Types::Strict::Array.of(AccessRole).meta(omittable: true)
|
|
10
13
|
attribute :hasAdminPolicy, Types::Strict::String
|
data/openapi.yml
CHANGED
|
@@ -215,6 +215,10 @@ components:
|
|
|
215
215
|
type: array
|
|
216
216
|
items:
|
|
217
217
|
type: string
|
|
218
|
+
disseminationWorkflow:
|
|
219
|
+
description: An additional workflow to start for objects managed by this admin policy once the end-accession workflow step is complete
|
|
220
|
+
example: wasCrawlPreassemblyWF
|
|
221
|
+
type: string
|
|
218
222
|
collectionsForRegistration:
|
|
219
223
|
description: When you register an item with this admin policy, these are the collections that are available.
|
|
220
224
|
type: array
|