Skip to main content

stage

ArchiMate 3.2 Equivalent: Value Stream Stage (Strategy Layer)

Represents an ordered milestone or processing stage within a value_stream. stage entities must be declared inside a parent value_stream container.


Syntax

value_stream <vs_id> "<Value Stream Name>" {
stage <stage_id> "<Display Name>" {
description "<text>"
owner "<team>"
tags ["tag1", "tag2"]
order <integer>
}
}

Properties

PropertyTypeAllowed ValuesDescription
descriptionstringFree textExplanation of stage entry and exit criteria
ownerstringFree textStage custodian
tagsstring[]Array of stringsCategorization tags
ordernumberInteger (e.g. order 1)Sequential position in the stream (must be unique within stream)

Semantic Validation Constraints

  1. Ordering Uniqueness: Every stage in a value_stream with an order property must have a unique integer value.
  2. Capability Realization: To link capabilities to a value stream stage, use realizes on the capability:
    capability cap_identity_verification "Identity Verification" {
    relationships {
    this realizes stage_kyc "Enables identity verification stage"
    }
    }

Complete Example

value_stream vs_claims "Insurance Claims Resolution" {
stage stage_intake "First Notice of Loss" {
description "Capture incident details from policyholder"
order 1
}

stage stage_investigation "Adjudication & Investigation" {
description "Assess coverage and damage appraisal"
order 2
}

stage stage_settlement "Claim Payout" {
description "Execute payment settlement to claimant"
order 3
}
}