forked from w3c/vc-use-cases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uc-issuing-claims.pml
36 lines (32 loc) · 923 Bytes
/
uc-issuing-claims.pml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
@startuml
' Built at http://plantuml.com/plantuml/
' Modified by @halindrome to harmonize terminology
!includeurl https://raw.githubusercontent.com/w3c/webpayments-ig/master/VCTF/common/skin.pml
!ifndef SKIN_INCLUDED
skinparam {
backgroundColor transparent
defaultFontName Lucida Sans
shadowing false
}
skinparam sequence {
DividerBackgroundColor transparent
LifeLineBackgroundColor transparent
}
!endif
Autonumber
Actor "Jane" as Holder
Participant "User Agent" as UA
Participant "Credential Repository" as CS
Participant "Issuer" as Issuer
Holder->UA: Navigate to\nweb site
UA->Issuer: Request Credential
Issuer->Issuer: Verify\nidentity
Issuer->Issuer: Generate credential
Issuer->UA: Issue credential
UA->Holder: Display credential
Holder->UA: Save credential
UA->CS: Store credential
CS->UA: List of credentials
UA->Holder: Show credential list
title Example credential creation flow
@enduml