@opentermsarchive/engine 8.0.0 → 9.0.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.
package/package.json
CHANGED
|
@@ -155,10 +155,10 @@ const { version: PACKAGE_VERSION } = require('../../../package.json');
|
|
|
155
155
|
* roles:
|
|
156
156
|
* type: array
|
|
157
157
|
* description: Roles of the entity within the governance, see [collection governance](https://docs.opentermsarchive.org/collections/reference/governance/)
|
|
158
|
-
* example: [host,
|
|
158
|
+
* example: [host, sysadmin]
|
|
159
159
|
* items:
|
|
160
160
|
* type: string
|
|
161
|
-
* enum: [host,
|
|
161
|
+
* enum: [host, sysadmin, curator, maintainer, contributor, analyst, diffuser, sponsor]
|
|
162
162
|
* i18n:
|
|
163
163
|
* type: object
|
|
164
164
|
* description: Internationalization of any of the Metadata properties (except i18n itself) for different language codes
|
|
@@ -30,38 +30,28 @@ const EXPECTED_RESPONSE = {
|
|
|
30
30
|
jurisdictions: [
|
|
31
31
|
'EU',
|
|
32
32
|
],
|
|
33
|
+
trackingPeriods: [
|
|
34
|
+
{
|
|
35
|
+
startDate: '2025-07-17',
|
|
36
|
+
schedule: '30 */12 * * *',
|
|
37
|
+
serverLocation: 'Strasbourg, FR',
|
|
38
|
+
},
|
|
39
|
+
],
|
|
33
40
|
governance: {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
logo: 'https://opentermsarchive.org/images/logo/logo-open-terms-archive-black.png',
|
|
49
|
-
},
|
|
50
|
-
],
|
|
51
|
-
maintainers: [
|
|
52
|
-
{
|
|
53
|
-
name: 'Open Terms Archive',
|
|
54
|
-
url: 'https://opentermsarchive.org/',
|
|
55
|
-
logo: 'https://opentermsarchive.org/images/logo/logo-open-terms-archive-black.png',
|
|
56
|
-
},
|
|
57
|
-
],
|
|
58
|
-
sponsors: [
|
|
59
|
-
{
|
|
60
|
-
name: 'Open Terms Archive',
|
|
61
|
-
url: 'https://opentermsarchive.org/',
|
|
62
|
-
logo: 'https://opentermsarchive.org/images/logo/logo-open-terms-archive-black.png',
|
|
63
|
-
},
|
|
64
|
-
],
|
|
41
|
+
'Open Terms Archive': {
|
|
42
|
+
url: 'https://opentermsarchive.org',
|
|
43
|
+
logo: 'https://opentermsarchive.org/images/logo/logo-open-terms-archive-black.png',
|
|
44
|
+
roles: [
|
|
45
|
+
'host',
|
|
46
|
+
'sysadmin',
|
|
47
|
+
'curator',
|
|
48
|
+
'maintainer',
|
|
49
|
+
'contributor',
|
|
50
|
+
'analyst',
|
|
51
|
+
'diffuser',
|
|
52
|
+
'sponsor',
|
|
53
|
+
],
|
|
54
|
+
},
|
|
65
55
|
},
|
|
66
56
|
};
|
|
67
57
|
|