-
Notifications
You must be signed in to change notification settings - Fork 0
/
bia_mifa_models.schema.json
431 lines (431 loc) · 16.5 KB
/
bia_mifa_models.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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
{
"$defs": {
"AnnotationType": {
"description": "",
"enum": [
"class_labels",
"bounding_boxes",
"counts",
"derived_annotations",
"geometrical_annotations",
"graphs",
"point_annotations",
"segmentation_mask",
"tracks",
"weak_annotations",
"other"
],
"title": "AnnotationType",
"type": "string"
},
"Annotations": {
"additionalProperties": false,
"description": "A set of annotations for an AI-ready dataset",
"properties": {
"annotation_confidence_level": {
"description": "Confidence on annotation accuracy",
"type": "string"
},
"annotation_coverage": {
"description": "Which images from the dataset were annotated, and what percentage of the data has been annotated from what is available",
"type": "string"
},
"annotation_criteria": {
"description": "Rules used to generate annotations",
"type": "string"
},
"annotation_method": {
"description": "Description of how the annotations were created. For example, were the annotations crowdsourced or expertly annotated, produced by a human or software, what software was used, when were the annotations created, protocols used for consensus and quality assurance",
"type": "string"
},
"annotation_overview": {
"description": "Short descriptive summary indicating the type of annotation and how it was generated",
"type": "string"
},
"authors": {
"description": "a collection of the authors of a study",
"items": {
"$ref": "#/$defs/Author"
},
"type": "array"
},
"file_metadata": {
"description": "a collection of the file level metadata for each annotation",
"items": {
"$ref": "#/$defs/FileLevelMetadata"
},
"type": "array"
}
},
"required": [
"annotation_overview",
"annotation_method"
],
"title": "Annotations",
"type": "object"
},
"Author": {
"additionalProperties": false,
"description": "Information about the authors",
"properties": {
"author_first_name": {
"description": "First name for an author",
"type": "string"
},
"author_last_name": {
"description": "Last name for an author",
"type": "string"
},
"email": {
"description": "Email address of a person",
"pattern": "^\\S+@[\\S+\\.]+\\S+",
"type": "string"
},
"orcid_id": {
"description": "A unique identifier for an author",
"type": "string"
},
"organisation": {
"description": "a collection of the name and address of organisations authors are affiliated with",
"items": {
"$ref": "#/$defs/OrganisationInfo"
},
"type": "array"
},
"role": {
"description": "Role of the author when creating the dataset",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"author_first_name",
"author_last_name"
],
"title": "Author",
"type": "object"
},
"FileLevelMetadata": {
"additionalProperties": false,
"description": "metadata atributes that must be detailed at the file level",
"properties": {
"annotation_creation_time": {
"description": "Date and time when the annotation was created",
"format": "date-time",
"type": "string"
},
"annotation_id": {
"description": "The identifier for the annotation",
"type": "string"
},
"annotation_type": {
"description": "Annotation type, for example class labels, segmentation masks, counts...",
"items": {
"$ref": "#/$defs/AnnotationType"
},
"type": "array"
},
"source_image_id": {
"description": "identifier of the source image from which the annotation originated",
"type": "string"
},
"spatial_information": {
"description": "Spatial information for non-pixel annotations",
"type": "string"
},
"transformations": {
"description": "Any transformations required to link the images to the annotations",
"type": "string"
}
},
"required": [
"annotation_id",
"annotation_type",
"source_image_id"
],
"title": "FileLevelMetadata",
"type": "object"
},
"GrantReference": {
"additionalProperties": false,
"description": "Information about grant ID and funding body that funded the study",
"properties": {
"funder": {
"description": "The funding body provididing support",
"type": "string"
},
"grant_id": {
"description": "The identifier for the grant",
"type": "string"
}
},
"required": [
"grant_id",
"funder"
],
"title": "GrantReference",
"type": "object"
},
"LicenseType": {
"description": "",
"enum": [
"CC0",
"CC_BY"
],
"title": "LicenseType",
"type": "string"
},
"OrganisationInfo": {
"additionalProperties": false,
"description": "Information about the organisation the author is affiliated with",
"properties": {
"address": {
"description": "Organisation address",
"type": "string"
},
"organisation_name": {
"description": "Organisation name",
"type": "string"
},
"ror_id": {
"description": "Identifier for the Research Organization Registry",
"type": "string"
}
},
"required": [
"organisation_name"
],
"title": "OrganisationInfo",
"type": "object"
},
"Publications": {
"additionalProperties": false,
"description": "Information about any publications associated with the dataset",
"properties": {
"publication_authors": {
"description": "Authors of associated publication",
"type": "string"
},
"publication_doi": {
"description": "Digital Object Identifier (DOI)",
"type": "string"
},
"publication_title": {
"description": "The title for a publication associated to the dataset",
"type": "string"
},
"publication_year": {
"description": "Year of publication",
"type": "string"
},
"pubmed_id": {
"description": "Identifier for journal articles/abstracts in PubMed",
"type": "string"
}
},
"required": [
"publication_title",
"publication_authors",
"publication_doi"
],
"title": "Publications",
"type": "object"
},
"Publications__identifier_optional": {
"additionalProperties": false,
"description": "Information about any publications associated with the dataset",
"properties": {
"publication_authors": {
"description": "Authors of associated publication",
"type": "string"
},
"publication_doi": {
"description": "Digital Object Identifier (DOI)",
"type": "string"
},
"publication_title": {
"description": "The title for a publication associated to the dataset",
"type": "string"
},
"publication_year": {
"description": "Year of publication",
"type": "string"
},
"pubmed_id": {
"description": "Identifier for journal articles/abstracts in PubMed",
"type": "string"
}
},
"required": [
"publication_title",
"publication_authors"
],
"title": "Publications",
"type": "object"
},
"Study": {
"additionalProperties": false,
"description": "General information about the study",
"properties": {
"acknowledgements": {
"description": "Any people or groups that should be acknowledged as part of the dataset",
"type": "string"
},
"ai_models_trained": {
"description": "Link to the models that have been trained with this dataset (if any). This could be links to GitHub or repositories like the BioImage Zoo.",
"items": {
"type": "string"
},
"type": "array"
},
"authors": {
"description": "a collection of the authors of a study",
"items": {
"$ref": "#/$defs/Author"
},
"type": "array"
},
"description": {
"description": "Brief description of the detaset. Must contain the biological application of the dataset",
"type": "string"
},
"funding_statement": {
"description": "Description of how the study was funded",
"type": "string"
},
"grants": {
"description": "a collection of grant ids and funder names associated with the study",
"items": {
"$ref": "#/$defs/GrantReference"
},
"type": "array"
},
"keywords": {
"description": "Keywords or tags used to describe the dataset",
"items": {
"type": "string"
},
"type": "array"
},
"license": {
"$ref": "#/$defs/LicenseType",
"description": "The license under which the data are available"
},
"link_description": {
"description": "The description of the linked content",
"items": {
"type": "string"
},
"type": "array"
},
"link_url": {
"description": "URL of relevant link",
"items": {
"type": "string"
},
"type": "array"
},
"publications": {
"additionalProperties": {
"$ref": "#/$defs/Publications__identifier_optional"
},
"description": "a collection of publications associated with a study",
"type": "object"
},
"title": {
"description": "The title for your dataset. This will be displayed when search results including your data are shown. Often this will be the same as an associated publication.",
"type": "string"
}
},
"required": [
"title",
"description",
"keywords",
"license",
"funding_statement",
"link_url"
],
"title": "Study",
"type": "object"
},
"Version": {
"additionalProperties": false,
"description": "Information about the dataset version",
"properties": {
"changes": {
"description": "Textual description of changes compared to previous version",
"type": "string"
},
"previous_version": {
"description": "Pointer to previous version",
"type": "string"
},
"timestamp": {
"description": "Date and time when the version was created",
"format": "date-time",
"type": "string"
},
"version": {
"description": "Unique version number",
"type": "string"
}
},
"required": [
"version",
"timestamp"
],
"title": "Version",
"type": "object"
}
},
"$id": "https://w3id.org/BioImage-Archive/bia-mifa-models",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"description": "A set of annotations for an AI-ready dataset",
"metamodel_version": "1.7.0",
"properties": {
"annotation_confidence_level": {
"description": "Confidence on annotation accuracy",
"type": "string"
},
"annotation_coverage": {
"description": "Which images from the dataset were annotated, and what percentage of the data has been annotated from what is available",
"type": "string"
},
"annotation_criteria": {
"description": "Rules used to generate annotations",
"type": "string"
},
"annotation_method": {
"description": "Description of how the annotations were created. For example, were the annotations crowdsourced or expertly annotated, produced by a human or software, what software was used, when were the annotations created, protocols used for consensus and quality assurance",
"type": "string"
},
"annotation_overview": {
"description": "Short descriptive summary indicating the type of annotation and how it was generated",
"type": "string"
},
"authors": {
"description": "a collection of the authors of a study",
"items": {
"$ref": "#/$defs/Author"
},
"type": "array"
},
"file_metadata": {
"description": "a collection of the file level metadata for each annotation",
"items": {
"$ref": "#/$defs/FileLevelMetadata"
},
"type": "array"
}
},
"required": [
"annotation_overview",
"annotation_method"
],
"title": "bia-mifa-models",
"type": "object",
"version": null
}