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_Context Diagram Sample.puml

16 lines
405 B
Plaintext

@startuml
!include ../C4.puml
LAYOUT_WITH_LEGEND
title System Context Diagram
Person(client, "Client", "A user of a system")
System(platform, "Platform", "Distributed system of independent Machines")
ExtSystem(3rdparty, "3rd Party Platform", "Implements actual business logic")
Rel(client, platform, "Uses")
Rel(client, 3rdparty, "Uses")
Rel(3rdparty, platform, "Depends on", "SDK, REST API")
@enduml