DecisioQ System Architecture Decision Concepts Decision List API Guide Client Kit Developer Center Decision Studio Quick Start Playground End-to-End Examples

AUTO-FLEET-008 End-to-End Example

Try the interactive showcase →

Determine Lease vs Buy Strategy compares acquisition approaches using business value, cost impact, operational fit, customer impact, and risk.

AutomotiveFleet Vehicle ManagementVehicle LifecycleTOPSIS
Business DataCollect lease and purchase alternatives
Input SchemaValidate business records
MappingPrepare canonical criteria
Decision EngineRank alternatives
ReviewAssess result stability

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 IDMeaningDirectionWeightUnit
business_valueBusiness Valuemaximize25%Rating
cost_impactCost Impactminimize20%Currency
operational_fitOperational Fitmaximize20%Rating
customer_impactCustomer Impactmaximize20%Rating
risk_levelRisk Levelminimize15%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.

First working request →

Data Preparation Guide

Business records
Input schema
Preparation profile
Canonical criteria
TOPSIS ranking

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 sourceCanonical target
option.vehicle.lifecycle.businessValuebusiness_value
option.financial.costImpactcost_impact
option.vehicle.lifecycle.operationalFitoperational_fit
option.vehicle.lifecycle.customerImpactcustomer_impact
option.risk.riskLevelrisk_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
        }
      }
    ]
  }
}

Download Business Data request

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
      }
    }
  ]
}

Download Prepared Criteria request

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.

RankOptionIDScore
1Determine Lease vs Buy Strategy Option 1FLEET-008-010.601588
2Determine Lease vs Buy Strategy Option 2FLEET-008-020.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.