@opentermsarchive/engine 4.0.0 → 4.0.1
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
|
@@ -58,6 +58,10 @@ const PACKAGE_JSON_PATH = '../../../package.json';
|
|
|
58
58
|
* type: string
|
|
59
59
|
* format: uri
|
|
60
60
|
* description: URL to the snapshots repository
|
|
61
|
+
* donations:
|
|
62
|
+
* type: string
|
|
63
|
+
* format: uri
|
|
64
|
+
* description: URL to the donations page
|
|
61
65
|
* logo:
|
|
62
66
|
* type: string
|
|
63
67
|
* format: uri
|
|
@@ -94,41 +98,23 @@ const PACKAGE_JSON_PATH = '../../../package.json';
|
|
|
94
98
|
* description: The date when tracking ended for this period
|
|
95
99
|
* governance:
|
|
96
100
|
* type: object
|
|
97
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
* sponsors:
|
|
115
|
-
* type: array
|
|
116
|
-
* items:
|
|
117
|
-
* $ref: '#/components/schemas/Organization'
|
|
118
|
-
* Organization:
|
|
119
|
-
* type: object
|
|
120
|
-
* properties:
|
|
121
|
-
* name:
|
|
122
|
-
* type: string
|
|
123
|
-
* description: Name of the organization
|
|
124
|
-
* url:
|
|
125
|
-
* type: string
|
|
126
|
-
* format: uri
|
|
127
|
-
* description: URL to the organization's website
|
|
128
|
-
* logo:
|
|
129
|
-
* type: string
|
|
130
|
-
* format: uri
|
|
131
|
-
* description: URL to the organization's logo
|
|
101
|
+
* additionalProperties:
|
|
102
|
+
* type: object
|
|
103
|
+
* properties:
|
|
104
|
+
* url:
|
|
105
|
+
* type: string
|
|
106
|
+
* format: uri
|
|
107
|
+
* description: URL to the entity's website
|
|
108
|
+
* logo:
|
|
109
|
+
* type: string
|
|
110
|
+
* format: uri
|
|
111
|
+
* description: URL to the entity's logo
|
|
112
|
+
* roles:
|
|
113
|
+
* type: array
|
|
114
|
+
* items:
|
|
115
|
+
* type: string
|
|
116
|
+
* enum: [host, administrator, curator, maintainer, sponsor]
|
|
117
|
+
* description: Roles of the entity within the governance
|
|
132
118
|
*/
|
|
133
119
|
export default async function metadataRouter(collectionPath, services) {
|
|
134
120
|
const router = express.Router();
|