Skip to content
Novus Examples
puml286 B

PlantUML Sequence Diagram

A PlantUML sequence diagram of an order interaction (customer, store, warehouse) as diagrams-as-code — for testing PlantUML parsing and diagram rendering pipelines.

Preview — first 13 linespuml
@startuml
actor Customer
participant Store
participant Warehouse

Customer -> Store : Place order
Store -> Warehouse : Request pick
Warehouse --> Store : Confirm stock
Store --> Customer : Order confirmed
Store -> Warehouse : Ship
Warehouse --> Customer : Delivered
@enduml

Specifications

Format
PlantUML
Diagram
sequence
Participants
3

What is a .puml file?

A PUML file contains a PlantUML diagram written as text — sequence, class, use-case, activity, and other UML diagrams described in a compact syntax that PlantUML renders to an image. It is a popular diagrams-as-code format.

How to use this file

Use an example PlantUML file to test diagram rendering and parsing, and PlantUML-to-image conversion in documentation pipelines.

Generated by generation/data_dev_artifacts.py. Free for any use, no attribution required — license.