29 lines
405 B
Plaintext
29 lines
405 B
Plaintext
@startuml
|
|
|
|
|
|
object Event
|
|
object "HTTP Request" as HTTPRequest
|
|
object Headers
|
|
object Body
|
|
object "event description" as EventDescription
|
|
cloud platform {
|
|
object Order
|
|
}
|
|
|
|
|
|
Event --> HTTPRequest
|
|
HTTPRequest *-- Headers
|
|
HTTPRequest *-- Body
|
|
Body *-- EventDescription
|
|
|
|
EventDescription : store
|
|
EventDescription : id
|
|
EventDescription : timestamp
|
|
EventDescription : order
|
|
|
|
EventDescription <|- Order
|
|
|
|
|
|
|
|
@enduml
|