forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext.json
More file actions
86 lines (86 loc) · 1.68 KB
/
context.json
File metadata and controls
86 lines (86 loc) · 1.68 KB
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
76
77
78
79
80
81
82
83
84
85
86
{
"nodes": [
{
"unique-id": "system-a",
"node-type": "system",
"name": "System A",
"description": "Main system"
},
{
"unique-id": "system-b",
"node-type": "system",
"name": "System B",
"description": "Secondary system"
},
{
"unique-id": "svc1",
"node-type": "service",
"name": "Service 1",
"description": "First service"
},
{
"unique-id": "svc2",
"node-type": "service",
"name": "Service 2",
"description": "Second service"
},
{
"unique-id": "svc3",
"node-type": "service",
"name": "Service 3",
"description": "Third service"
}
],
"relationships": [
{
"unique-id": "r1",
"relationship-type": {
"composed-of": {
"container": "system-a",
"nodes": ["svc1", "svc2"]
}
}
},
{
"unique-id": "r2",
"relationship-type": {
"composed-of": {
"container": "system-b",
"nodes": ["svc3"]
}
}
},
{
"unique-id": "r3",
"relationship-type": {
"connects": {
"source": {
"node": "svc1"
},
"destination": {
"node": "svc2"
}
}
},
"description": "Service 1 calls Service 2"
},
{
"unique-id": "r4",
"relationship-type": {
"connects": {
"source": {
"node": "svc2"
},
"destination": {
"node": "svc3"
}
}
},
"description": "Service 2 integrates with Service 3"
}
],
"metadata": {},
"controls": {},
"flows": [],
"adrs": []
}