{
  "policy": "tier1-equivalence/policies/23-if-nested.aster",
  "entry": "loan_decision",
  "cases": [
    {
      "name": "high credit + high income → approved",
      "input": [
        750,
        60000
      ],
      "expectedOutput": "approved"
    },
    {
      "name": "high credit + low income → review",
      "input": [
        750,
        40000
      ],
      "expectedOutput": "review"
    },
    {
      "name": "low credit → denied",
      "input": [
        600,
        60000
      ],
      "expectedOutput": "denied"
    }
  ]
}
