blob: 8127b5f9dc416a489567af422bc6794e3e5de74f (
plain)
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
|
@startuml
title ${version} Active and Available Inventory Relationships Class Diagram
class Inventory
<#list sortedAaiApis?keys as key>
<#list sortedAaiApis[key] as api>
class ${api.getPath()}
</#list>
</#list>
"Inventory" *-- "business"
"Inventory" *-- "cloud-infrastructure"
"Inventory" *-- "common"
"Inventory" *-- "external-system"
"Inventory" *-- "network"
"Inventory" *-- "service-design-and-creation"
Note: Convert the paths below into compositions like above
<#list sortedAaiApis?keys as key>
<#list sortedAaiApis[key] as api>
${api.getPath()}
</#list>
</#list>
@enduml
|