-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathExampleSequenceDiagram.txt
More file actions
36 lines (33 loc) · 952 Bytes
/
ExampleSequenceDiagram.txt
File metadata and controls
36 lines (33 loc) · 952 Bytes
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
title Registration Workflow
Front End Application->Registration: Create Registration
note right of Front End Application
Registration data:
Name
Address
Birth date
Phone Number
ID (optional)
end note
Registration->ID: Validate ID
note right of Registration: Look up ID and name in database
opt error
ID-->Registration: Validation Error
Registration-->Front End Application:Return 400 - Invalid ID
note left of Front End Application
User corrects and
resubmits data
end note
Front End Application->Registration: Create Registration
Registration->ID: Validate ID
end
ID->Registration: Validation Success
note over Registration
Internal De-duplication search
end note
opt record exists
Registration-->Front End Application:Return 400 - Record exists
end
note over Registration
Store registration record
end note
Registration->Front End Application:Return 201 - Record created