-
-
Save rdmueller/5909e58a6f3ddd61f314ccb33d83b4ef to your computer and use it in GitHub Desktop.
plantuml template for specifying stakeholder concerns & user stories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Asciidoctor | |
.asciidoctor/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
left to right direction | |
!$stakeholder = "<stakeholder>" | |
!$painpoint = "<pain point>" | |
!$actor = "<user>" | |
!$behavior = "<behavior>" | |
!$rationale = "<rationale>" | |
object stakeholderconcern1 { | |
As a $stakeholder | |
I experience $painpoint | |
} | |
object userstory1 { | |
As a $actor | |
I want to $behavior | |
so that I can $rationale | |
} | |
note bottom of userstory1 : <b>Example:</b> $behavior using some standard | |
stakeholderconcern1 <.. userstory1 : <<trace>> | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment