You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`relationship-unique-id`: Which connection is used
20
20
-`sequence-number`: Order in the flow (1, 2, 3...)
21
-
-`summary`: What happens in this step
21
+
-`description`: What happens in this step
22
22
-`direction`: `source-to-destination` or `destination-to-source`
23
23
24
24
### 2. Map Your E-Commerce Order Flow
@@ -39,9 +39,9 @@ Create a flow with:
39
39
- name: "Customer Order Processing"
40
40
- description: "End-to-end flow from customer placing an order to payment confirmation"
41
41
- transitions array referencing the ACTUAL relationship unique-ids from my architecture:
42
-
1. The customer-to-gateway interacts relationship, sequence-number: 1, summary: "Customer submits order via web interface", direction: "source-to-destination"
43
-
2. The gateway-to-order-service connects relationship, sequence-number: 2, summary: "API Gateway routes order to Order Service", direction: "source-to-destination"
44
-
3. The order-service-to-payment-service connects relationship, sequence-number: 3, summary: "Order Service initiates payment processing", direction: "source-to-destination"
42
+
1. The customer-to-gateway interacts relationship, sequence-number: 1, description: "Customer submits order via web interface", direction: "source-to-destination"
43
+
2. The gateway-to-order-service connects relationship, sequence-number: 2, description: "API Gateway routes order to Order Service", direction: "source-to-destination"
44
+
3. The order-service-to-payment-service connects relationship, sequence-number: 3, description: "Order Service initiates payment processing", direction: "source-to-destination"
45
45
46
46
Look up the exact relationship unique-ids from my relationships array and use those.
47
47
```
@@ -198,7 +198,7 @@ git tag | grep -q "day-9"
198
198
- Use bidirectional transitions for request-response patterns
199
199
- Flows can reference the same relationships multiple times
200
200
- Add flow-specific controls for critical business processes
201
-
- Use meaningful summaries that describe business intent, not just technical details
201
+
- Use meaningful descriptions that describe business intent, not just technical details
202
202
203
203
## Next Steps
204
204
Tomorrow (Day 10) you'll link your architecture to Architecture Decision Records (ADRs)!
0 commit comments