Decision Summary
Business question: Which vehicle should be recommended for determine lease vs buy strategy in the selected Fleet Vehicle Management context?
Outcome: a ranked recommendation that supports, but does not replace, accountable business judgment.
| Criterion ID | Meaning | Direction | Weight | Unit |
|---|---|---|---|---|
business_value | Business Value | maximize | 25% | Rating |
cost_impact | Cost Impact | minimize | 20% | Currency |
operational_fit | Operational Fit | maximize | 20% | Rating |
customer_impact | Customer Impact | maximize | 20% | Rating |
risk_level | Risk Level | minimize | 15% | Rating |
5-Minute Quick Path
Goal
Run Determine Lease vs Buy Strategy with a complete candidate set.
Recommended mode
Business Data Mode when you have ordinary operational records.
You provide
Candidate business records matching the published input schema.
DecisioQ returns
A ranked recommendation with score evidence.
Data Preparation Guide
Business Data uses domain-shaped records and the published mapping profile. Prepared Criteria bypasses mapping and supplies canonical criterion IDs directly. Never send both modes in one request.
| Business source | Canonical target |
|---|---|
option.vehicle.lifecycle.businessValue | business_value |
option.financial.costImpact | cost_impact |
option.vehicle.lifecycle.operationalFit | operational_fit |
option.vehicle.lifecycle.customerImpact | customer_impact |
option.risk.riskLevel | risk_level |
Business Data Mode
This complete illustrative request comes from certification case valid-generated-business-payload. It demonstrates shape and mapping, not production data.
{
"decisionId": "AUTO-FLEET-008",
"mappingProfileId": "fleet-vehicle-manage-determine-lease-vs-buy-strateg-auto-fleet-008",
"businessData": {
"requestContext": {
"sourceSystem": "automotive-profile-factory",
"correlationId": "factory-auto-fleet-008"
},
"fleetAssets": [
{
"optionId": "FLEET-008-01",
"name": "Determine Lease vs Buy Strategy Option 1",
"vehicle": {
"lifecycle": {
"businessValue": 1.88,
"operationalFit": 3.2,
"customerImpact": 4.08
}
},
"financial": {
"costImpact": 62500.0
},
"risk": {
"riskLevel": 1.76
}
},
{
"optionId": "FLEET-008-02",
"name": "Determine Lease vs Buy Strategy Option 2",
"vehicle": {
"lifecycle": {
"businessValue": 2.08,
"operationalFit": 2.56,
"customerImpact": 2.52
}
},
"financial": {
"costImpact": 152500.0
},
"risk": {
"riskLevel": 3.32
}
}
]
}
}Prepared Criteria Mode
This complete request is the published expected-canonical artifact. Values and names remain illustrative.
{
"decisionId": "AUTO-FLEET-008",
"mappingProfileId": "fleet-vehicle-manage-determine-lease-vs-buy-strateg-auto-fleet-008",
"mappingProfileVersion": "1.0.0",
"profileId": "balanced",
"scenarioId": "standard",
"algorithm": "TOPSIS",
"weightStrategy": "Expert",
"runSensitivity": false,
"requestContext": {
"correlationId": "factory-auto-fleet-008"
},
"options": [
{
"optionId": "FLEET-008-01",
"name": "Determine Lease vs Buy Strategy Option 1",
"values": {
"business_value": 1.88,
"cost_impact": 62500.0,
"operational_fit": 3.2,
"customer_impact": 4.08,
"risk_level": 1.76
}
},
{
"optionId": "FLEET-008-02",
"name": "Determine Lease vs Buy Strategy Option 2",
"values": {
"business_value": 2.08,
"cost_impact": 152500.0,
"operational_fit": 2.56,
"customer_impact": 2.52,
"risk_level": 3.32
}
}
]
}Understanding the Result
The score is a relative TOPSIS closeness coefficient within this candidate set; it is not a probability. The winner below was computed by DecisioQ.DecisionEngine.Services.TopsisEngine in-process from the published canonical request.
| Rank | Option | ID | Score |
|---|---|---|---|
| 1 | Determine Lease vs Buy Strategy Option 1 | FLEET-008-01 | 0.601588 |
| 2 | Determine Lease vs Buy Strategy Option 2 | FLEET-008-02 | 0.398412 |
Winner: FLEET-008-01. Download verified local result
Profiles and Scenarios
Profiles: balanced, cost_focused, quality_focused, risk_averse
Scenarios: standard, budget_reduction, high_demand, emergency_operations
Profiles change business priorities; scenarios represent operating context. Re-run the same candidate set and compare winner, score gap, and criterion contribution before adopting a change.
Sensitivity Analysis
Vary the highest-weight criteria in small increments and record whether the winner changes. A stable winner across reasonable weight changes is stronger evidence than a large score in one configuration.
Scenario Analysis
Use a published scenario only when it represents the intended operating context: standard, budget_reduction, high_demand, emergency_operations. Compare the winner, ranking gap, and trade-offs with the baseline run.
Integration Examples and Next Steps
Use the API guide and client kit to transport either request mode. This example intentionally does not duplicate authentication, routing, Key Vault, usage accounting, or operational logging guidance.
Review the batch validation report, replace illustrative data with governed business data, and add domain acceptance thresholds before rollout.
