-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
75 lines (75 loc) · 1.8 KB
/
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
{
"title": "Vibrotactile TGs",
"description": "Instructions on how to explore this whole graphics",
"type": "object",
"properties": {
"className": {
"description": "Stage, Layer or SVG object types",
"type": "string"
},
"attrs": {
"type": "object",
"properties": {
"width": {
"type": "integer"
},
"height": {
"type": "integer"
},
"description": {
"type": "string"
}
}
},
"children": {
"description": "Description on which objects are on the graphics, what does it represent",
"type": "array",
"items": {
"type": "object",
"description": "Description of the single object on the graphics",
"properties": {
"attrs": {
"type": "object",
"properties": {
"width": {
"type": "integer"
},
"height": {
"type": "integer"
},
"fill": {
"type": "string"
},
"stroke": {
"type": "string"
},
"strokeWidth": {
"type": "integer"
},
"x": {
"type": "integer"
},
"y": {
"type": "integer"
},
"data": {
"type": "string"
},
"feedbackType": {
"type": "string"
}
}
},
"className": {
"type": "string"
},
"children": {
"type": "array"
}
},
"required": ["children", "attrs", "className"]
}
}
},
"required": ["children", "attrs", "className"]
}