You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
C4-PlantUML/samples/C4_Container Diagram Sample...

20 lines
566 B
Plaintext

@startuml
!include ../C4.puml
LAYOUT_WITH_LEGEND
title Container Diagram
Person(client, "Client", "A user of a system")
package "Platform" <<boundary>> as platform {
Container(api_app, "Mobile App", "Android / IOS", "Uses SDK for direct calls")
Container(api_dash, "Web App", "asp.net", "Covers one or more business needs")
}
ExtSystem(3rdparty, "3rd Party Platform", "Implements actual business logic")
Rel(client, platform, "Uses")
Rel(client, 3rdparty, "Uses")
Rel(api_dash, 3rdparty, "Uses", "REST API")
Rel(api_app, 3rdparty, "Uses", "SDK")
@enduml