Skip to main content

capability_map View

The capability_map view renders hierarchical business capability grids (Level 1, Level 2, Level 3), highlighting maturity ratings, strategic TIME framework dispositions, and capability realizations.


Visual Projection

capability_map view visual diagramcapability_map view visual diagram

Capability Map View showing hierarchical decomposition with TIME framework ratings


Purpose & Target Audience

  • Target Audience: Business Architects, Chief Strategy Officers, Product Managers, Portfolio Managers.
  • Primary Use Cases:
    • Mapping the enterprise's functional capabilities independent of software implementations.
    • Visualizing TIME portfolio rationalization (Invest, Tolerate, Migrate, Eliminate).
    • Identifying capability gaps, redundant capabilities, and transformation targets.
    • Linking customer-facing value stream stages to supporting business capabilities.

Supported Entity Types

Entity TypeRole in Capability MapDescription
capabilityCore ElementThe hierarchical business capabilities (L1, L2, L3).
goalStrategic AlignmentBusiness objectives supported by capabilities.
value_streamValue DeliveryEnd-to-end customer value streams.
stageJourney MilestoneSpecific milestone stages within value streams.
systemTechnical EnablerSoftware platforms realizing capabilities.

Supported Relationships & Verbs

Relationship VerbSource EntityTarget EntityTypical Representation
composed_ofcapability (L1)capability (L2)Hierarchical nesting within grids
realizessystem, capabilitycapability, stage, goalRealization links
influencescapabilitygoal, kpiStrategic outcome influence edge
governed_bycapabilitypolicy, standardCompliance baseline edge

Filtering & Layout Recommendations

  • Recommended Layout: Grid / Hierarchical nested layout.
  • Common Predicates:
    • include capability where time == "Invest": Heatmap of growth initiatives.
    • include capability where maturity == "Initial": Highlight capability deficit areas.

Complete DSL Example

views {
capability_map v_retail_banking_map "Retail Banking Capability Map" {
# Include all business capabilities and supporting goals
include capability
include goal

# Show realization to strategy
include_verb realizes outgoing
include_verb influences outgoing

# Style based on TIME framework disposition
style capability where time == "Invest" {
css_class "time-invest-green"
}
style capability where time == "Eliminate" {
css_class "time-eliminate-red"
}
}
}