Skip to content

Instantly share code, notes, and snippets.

@jeff-auth0
Last active September 30, 2022 21:17
Show Gist options
  • Save jeff-auth0/e68861059b26679ddff1bd7230b90bba to your computer and use it in GitHub Desktop.
Save jeff-auth0/e68861059b26679ddff1bd7230b90bba to your computer and use it in GitHub Desktop.
@startuml
title <size:50> Title of your diagram
skinparam sequence {
ArrowColor DeepSkyBlue
ActorBorderColor DeepSkyBlue
LifeLineBorderColor blue
LifeLineBackgroundColor #A9DCDF
ParticipantBorderColor DeepSkyBlue
ParticipantBackgroundColor DodgerBlue
ParticipantFontSize 17
ParticipantFontColor #A9DCDF
ParticipantPadding 270
ParticipantFontSize 17
ActorBackgroundColor aqua
ActorFontColor DeepSkyBlue
ActorFontSize 17
ActorFontName Aapex
SequenceMessageAlign direction
}
actor Bob as b
participant "Participant 1" as v
|||
b-->>v: "Hello world"
note right
<code>
Please note not all values are required refer to
{
"jsonproperty" : "hello"
}
</code>
endnote
|||
alt Alt flow
b-->>v: "Hello world - 2"
end
|||
|||
alt Alt flow 2
b-->>v: "Hello world - 3"
note right
<code>
Some code
</code>
endnote
end
|||
|||
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment