-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadataSchema.json
More file actions
57 lines (57 loc) · 1.27 KB
/
metadataSchema.json
File metadata and controls
57 lines (57 loc) · 1.27 KB
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
{
"type": "struct",
"fields": [
{
"name": "image",
"type": "string",
"nullable": false,
"metadata":
{
"comment": "The original ISIC Challenge 2019 image name.",
"pattern": "\b(ISIC)_[0-9]{7}\b"
}
},
{
"name": "age_approx",
"type": "integer",
"nullable": true,
"metadata":
{
"comment": "The approximate age of the dermoscopic image subject.",
"default": 0,
"options": [0, 5, 10, 20, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85]
}
},
{
"name": "anatom_site_general",
"type": "string",
"nullable": true,
"metadata":
{
"comment": "The area of the body from whence the dermascopic image was acquired.",
"default": null
}
},
{
"name": "lesion_id",
"type": "string",
"nullable": true,
"metadata":
{
"comment": "Image identification codes particular to the primary sources of the images.",
"default": null
}
},
{
"name": "sex",
"type": "string",
"nullable": true,
"metadata":
{
"comment": "The sex of the subject.",
"default": null,
"options": ["female", "male"]
}
}
]
}