Skip to main content

Value Stream & Capability Alignment

This example demonstrates how business value streams are decomposed into sequential stages and realized by underlying business capabilities.

workspace value_stream_model "Customer Journey Mapping" {

layer "Business Architecture" {
value_stream vs_mortgage "Mortgage Loan Application" {
description "End-to-end customer journey from loan discovery to property settlement"

stage stage_inquiry "1. Inquiry & Rate Quote" {
order 1
}
stage stage_underwriting "2. Risk Underwriting" {
order 2
}
stage stage_settlement "3. Loan Settlement" {
order 3
}
}

capability cap_credit_decisioning "Automated Credit Decisioning" {
relationships {
this realizes stage_underwriting "Enables instant automated underwriting"
}
}

capability cap_fund_disbursement "Settlement & Disbursement" {
relationships {
this realizes stage_settlement "Executes wire transfer on closing day"
}
}
}
}