forked from contributorshipcollaboration/credit-translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
credit_translation_schema.json
368 lines (368 loc) · 14.6 KB
/
credit_translation_schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/contributorshipcollaboration/credit-translation/blob/main/credit_translation_schema.json",
"title": "JSON schema for CRediT translation",
"version": "1.0",
"type": "object",
"properties": {
"metadata": {
"type": "object",
"properties": {
"languageCode": {
"type": "string",
"pattern": "^[a-zA-Z]{2,3}$",
"description": "The language code of the metadata (ISO 639-2 compatible)"
},
"languageName": {
"type": "string",
"description": "The full name of the language"
},
"translators": {
"type": "array",
"items": {"$ref": "#/definitions/translator"},
"description": "List of identifying information on each translator"
},
"translationProcedure": {
"type": "string",
"description": "Free-text description of the translation procedure"
}
},
"required": [
"languageCode", "languageName", "translators", "translationProcedure"
]
},
"translations": {
"type": "object",
"properties": {
"Conceptualization": {
"type": "object",
"properties": {
"description": {
"const": "Ideas; formulation or evolution of overarching research goals and aims."
},
"id": {
"const": "8b73531f-db56-4914-9502-4cc4d4d8ed73"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Data Curation": {
"type": "object",
"properties": {
"description": {
"const": "Management activities to annotate (produce metadata), scrub data and maintain research data (including software code, where it is necessary for interpreting the data itself) for initial use and later re-use."
},
"id": {
"const": "f93e0f44-f2a4-4ea1-824a-4e0853b05c9d"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Formal Analysis": {
"type": "object",
"properties": {
"description": {
"const": "Application of statistical, mathematical, computational, or other formal techniques to analyse or synthesize study data."
},
"id": {
"const": "95394cbd-4dc8-4735-b589-7e5f9e622b3f"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Funding Acquisition": {
"type": "object",
"properties": {
"description": {
"const": "Acquisition of the financial support for the project leading to this publication."
},
"id": {
"const": "34ff6d68-132f-4438-a1f4-fba61ccf364a"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Investigation": {
"type": "object",
"properties": {
"description": {
"const": "Conducting a research and investigation process, specifically performing the experiments, or data/evidence collection."
},
"id": {
"const": "2451924d-425e-4778-9f4c-36c848ca70c2"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Methodology": {
"type": "object",
"properties": {
"description": {
"const": "Development or design of methodology; creation of models."
},
"id": {
"const": "f21e2be9-4e38-4ab7-8691-d6f72d5d5843"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Project Administration": {
"type": "object",
"properties": {
"description": {
"const": "Management and coordination responsibility for the research activity planning and execution."
},
"id": {
"const": "a693fe76-ea33-49ad-9dcc-5e4f3ac5f938"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Resources": {
"type": "object",
"properties": {
"description": {
"const": "Provision of study materials, reagents, materials, patients, laboratory samples, animals, instrumentation, computing resources, or other analysis tools."
},
"id": {
"const": "ebd781f0-bf79-492c-ac21-b31b9c3c990c"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Software": {
"type": "object",
"properties": {
"description": {
"const": "Programming, software development; designing computer programs; implementation of the computer code and supporting algorithms; testing of existing code components."
},
"id": {
"const": "f89c5233-01b0-4778-93e9-cc7d107aa2c8"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Supervision": {
"type": "object",
"properties": {
"description": {
"const": "Oversight and leadership responsibility for the research activity planning and execution, including mentorship external to the core team."
},
"id": {
"const": "0c8ca7d4-06ad-4527-9cea-a8801fcb8746"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Validation": {
"type": "object",
"properties": {
"description": {
"const": "Verification, whether as a part of the activity or separate, of the overall replication/reproducibility of results/experiments and other research outputs."
},
"id": {
"const": "4b1bf348-faf2-4fc4-bd66-4cd3a84b9d44"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Visualization": {
"type": "object",
"properties": {
"description": {
"const": "Preparation, creation and/or presentation of the published work, specifically visualization/data presentation."
},
"id": {
"const": "76b9d56a-e430-4e0a-84c9-59c11be343ae"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Writing – Original Draft Preparation": {
"type": "object",
"properties": {
"description": {
"const": "Preparation, creation and/or presentation of the published work, specifically writing the initial draft (including substantive translation)."
},
"id": {
"const": "43ebbd94-98b4-42f1-866b-c930cef228ca"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
},
"Writing – Review & Editing": {
"type": "object",
"properties": {
"description": {
"const": "Preparation, creation and/or presentation of the published work by those from the original research group, specifically critical review, commentary or revision – including pre- or post-publication stages."
},
"id": {
"const": "d3aead86-f2a2-47f7-bb99-79de6421164d"
},
"translation": {
"$ref": "#/definitions/roleTranslation"
}
},
"required": [
"description",
"id",
"translation"
]
}
},
"required": [
"Conceptualization",
"Data Curation",
"Formal Analysis",
"Funding Acquisition",
"Investigation",
"Methodology",
"Project Administration",
"Resources",
"Software",
"Supervision",
"Validation",
"Visualization",
"Writing – Original Draft Preparation",
"Writing – Review & Editing"
]
}
},
"required": [
"metadata",
"translations"
],
"additionalProperties": false,
"definitions": {
"roleTranslation": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Translation of the role name"
},
"description": {
"type": "string",
"description": "Translation of the role description"
}
},
"required": [
"name",
"description"
]
},
"translator": {
"type": "object",
"properties": {
"firstName": {
"type": "string",
"description": "First name of the translator"
},
"lastName": {
"type": "string",
"description": "Last name of the translator"
},
"middleName": {
"type": "string",
"description": "Middle name of the translator"
},
"ORCID": {
"type": "string",
"description": "ORCID of the translator"
}
},
"required": ["firstName", "lastName"]
}
}
}