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
{
"framework": {
"fps": 60
},
"simulations": [
{
"name": "<simulation-name>",
"endpoint": "127.0.0.1:7001",
"plugin": "<plugin-file>",
"inputs": [
{
"name": "<input-name>",
"type": "<data-type>"
}
],
"outputs": [
{
"name": "<output-name>",
"type": "<data-type>"
}
]
}
],
"links": [
{
"from": {
"endpoint": "127.0.0.1:7001",
"output": "<output-name>"
},
"to": {
"endpoint": "127.0.0.1:7002",
"input": "<input-name>"
}
}
]
}