Example of a components library file

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"components" : [
{
"name" : "Name 1",
"description" : "Description 1",
"executable" : false,
"inports" : [
{
"inports" : "inport 1"
}
],
"outports" : [
{
"port" : "outport 1"
}
],
"language" : "programming language",
"code" : "code",
"tests" : "code for the tests"
}
]
}