{
  "policy": "tier1-equivalence/policies/incremental_test.aster",
  "entry": "evaluateLoanEligibility",
  "cases": [
    {
      "name": "constructs LoanDecision",
      "input": [
        {
          "applicantId": "a1",
          "amount": 10000,
          "termMonths": 12,
          "purpose": "car"
        },
        {
          "age": 30,
          "creditScore": 700,
          "annualIncome": 50000,
          "monthlyDebt": 500,
          "yearsEmployed": 5
        }
      ],
      "expectedOutput": {
        "__type": "LoanDecision",
        "approved": true,
        "reason": "OK",
        "approvedAmount": 0,
        "interestRate": 0,
        "termMonths": 0
      }
    }
  ]
}
