-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-schema.json
50 lines (50 loc) · 990 Bytes
/
example-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
{
"graph": {
"id": "io.archspec",
"type": "compspec",
"label": "compatibilities",
"nodes": {
"cpu": {
"label": "central processing unit (cpu)"
},
"cpu.family": {
"label": "cpu family"
},
"cpu.model": {
"label": "cpu model"
},
"cpu.target": {
"label": "cpu target"
},
"cpu.vendor": {
"label": "cpu vendor"
}
},
"edges": [
{
"source": "cpu",
"target": "cpu.family",
"relation": "contains"
},
{
"source": "cpu",
"target": "cpu.model",
"relation": "contains"
},
{
"source": "cpu",
"target": "cpu.target",
"relation": "contains"
},
{
"source": "cpu",
"target": "cpu.vendor",
"relation": "contains"
}
],
"metadata": {
"version": "0.0.0",
"source": "https://github.com/supercontainers/compspec"
}
}
}