Update README.adoc with object diagram
This commit is contained in:
parent
00474bfede
commit
f1d7285087
1 changed files with 29 additions and 0 deletions
29
README.adoc
29
README.adoc
|
|
@ -5,4 +5,33 @@ An approach to implement a cmdb on steroids as a bunch of linked objects.
|
|||
It's about object schemas and types and typed links to describe the world as
|
||||
dependency graph.
|
||||
|
||||
.A bunch of linked objects
|
||||
[plantuml, format=svg]
|
||||
----
|
||||
@startuml
|
||||
|
||||
object "item 1" as i1
|
||||
object "item 3" as i3
|
||||
object "item 4" as i4
|
||||
object "item 5" as i5
|
||||
|
||||
object "link 1" as l1
|
||||
object "link 2" as l2
|
||||
object "link 3" as l3
|
||||
object "link 4" as l4
|
||||
object "link 5" as l5
|
||||
|
||||
i1 --> l1
|
||||
i1 --> l2
|
||||
l1 --> i2
|
||||
l2 --> i5
|
||||
i5 --> l3
|
||||
l3 --> i4
|
||||
l4 --> i3
|
||||
i2 --> l4
|
||||
l5 --> i1
|
||||
|
||||
@enduml
|
||||
----
|
||||
|
||||
This service provides an REST API for all interactions.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue