Use Case: Sharing Counts Between Business Units

Requirement: Share feature counts between two business units.

This scenario features two business units called Sales and Engineering, which have been defined by entries in the vendor dictionary.

The model definition defines two partitions, one for the Engineering business unit and another for the Sales business unit. The definition shares the total feature count of 10 for feature f1 equally between both business units, meaning each business unit gets 5.

Model Definition Example

model "exampleModel" {

partitions {

partition "engineering" {

"f1" 1.0 5

}

partition "sales" {

"f1" 1.0 5

}

}

on dictionary("business-unit" : "engineering") {

use "engineering"

accept

}

on dictionary("business-unit" : "sales") {

use "sales"

accept

}

}