Skip to content

UC-BoK Capability Dependency Graph (ONT-004)

graph TD

    %% Node shapes: [] operational  ([]) management  {{}} intelligence  () engagement
    customer_identity("Customer Identity")
    customer_profile("Customer Profile")
    customer_consent(["Customer Consent"])
    customer_segmentation{{"Customer Segmentation"}}
    clienteling("Clienteling")
    basket_management["Basket Management"]
    checkout["Checkout"]
    order_management(["Order Management"])
    order_orchestration{{"Order Orchestration"}}
    inventory_visibility{{"Inventory Visibility"}}
    inventory_reservation(["Inventory Reservation"])
    inventory_allocation(["Inventory Allocation"])
    store_inventory(["Store Inventory"])
    fulfillment_execution["Fulfillment Execution"]
    returns_management(["Returns Management"])
    exchange_management(["Exchange Management"])
    pricing{{"Pricing"}}
    promotions["Promotions"]
    voucher_management(["Voucher Management"])
    loyalty("Loyalty")
    loyalty_management(["Loyalty Management"])
    payment_processing["Payment Processing"]
    store_operations(["Store Operations"])
    catalogue_management(["Catalogue Management"])
    channel_management(["Channel Management"])
    subscription_management(["Subscription Management"])
    guided_selling("Guided Selling")
    decision_intelligence{{"Decision Intelligence"}}
    social_intelligence{{"Social Intelligence"}}
    automated_item_identification{{"Automated Item Identification"}}
    service_order_management(["Service Order Management"])
    retail_media_management{{"Retail Media Management"}}
    loss_prevention(["Loss Prevention"])

    %% requires --> | enables -.-> | enhances ..->
    checkout --> basket_management
    checkout --> payment_processing
    checkout --> pricing
    checkout ..-> promotions
    checkout ..-> loyalty
    checkout ..-> inventory_reservation
    order_management --> payment_processing
    order_orchestration --> order_management
    order_orchestration --> inventory_visibility
    order_orchestration -.-> inventory_allocation
    inventory_reservation --> inventory_visibility
    inventory_allocation --> inventory_reservation
    inventory_allocation --> inventory_visibility
    fulfillment_execution --> order_management
    fulfillment_execution --> inventory_allocation
    returns_management --> order_management
    returns_management --> payment_processing
    exchange_management --> returns_management
    exchange_management --> inventory_reservation
    exchange_management --> order_management
    customer_profile --> customer_identity
    customer_consent --> customer_identity
    customer_segmentation --> customer_profile
    clienteling --> customer_identity
    clienteling --> customer_profile
    loyalty --> customer_identity
    loyalty -.-> payment_processing
    loyalty_management --> loyalty
    promotions --> pricing
    voucher_management -.-> payment_processing
    channel_management --> catalogue_management
    channel_management --> pricing
    subscription_management --> order_management
    subscription_management --> payment_processing
    subscription_management ..-> inventory_reservation
    store_operations -.-> store_inventory
    store_inventory -.-> inventory_visibility
    guided_selling --> customer_profile
    guided_selling ..-> clienteling
    decision_intelligence --> customer_consent
    social_intelligence --> customer_consent
    automated_item_identification ..-> inventory_visibility
    loss_prevention ..-> automated_item_identification
    loss_prevention ..-> checkout
    service_order_management --> order_management
    service_order_management ..-> customer_profile
    retail_media_management --> customer_consent
    retail_media_management ..-> customer_segmentation
    retail_media_management ..-> promotions

    classDef operational fill:#dbeafe,stroke:#3b82f6,color:#1e40af
    classDef management  fill:#dcfce7,stroke:#22c55e,color:#166534
    classDef intelligence fill:#fef9c3,stroke:#eab308,color:#713f12
    classDef engagement  fill:#fce7f3,stroke:#ec4899,color:#9d174d
    class customer_identity engagement
    class customer_profile engagement
    class customer_consent management
    class customer_segmentation intelligence
    class clienteling engagement
    class basket_management operational
    class checkout operational
    class order_management management
    class order_orchestration intelligence
    class inventory_visibility intelligence
    class inventory_reservation management
    class inventory_allocation management
    class store_inventory management
    class fulfillment_execution operational
    class returns_management management
    class exchange_management management
    class pricing intelligence
    class promotions operational
    class voucher_management management
    class loyalty engagement
    class loyalty_management management
    class payment_processing operational
    class store_operations management
    class catalogue_management management
    class channel_management management
    class subscription_management management
    class guided_selling engagement
    class decision_intelligence intelligence
    class social_intelligence intelligence
    class automated_item_identification intelligence
    class service_order_management management
    class retail_media_management intelligence
    class loss_prevention management