-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.json
38 lines (38 loc) · 983 Bytes
/
model.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
{
"name": "Default Models",
"models": [
{
"name": "DefaultModel",
"generator": "random(never)",
"startElementId": "v0",
"vertices": [
{
"id": "v0",
"name": "start_vertex"
},
{
"id": "v1",
"name": "state_a"
},
{
"id": "v2",
"name": "state_b"
}
],
"edges": [
{
"id": "e0",
"name": "action_a",
"sourceVertexId": "v0",
"targetVertexId": "v1"
},
{
"id": "e1",
"name": "action_b",
"sourceVertexId": "v0",
"targetVertexId": "v2"
}
]
}
]
}