{
  "executed_at": "2026-09-15T14:05:57.130219+00:00",
  "scope": "Eight synthetic records; fictional positive-amount entry contract; USD/KRW allowlist; no model benchmark.",
  "cases": [
    {
      "case": "valid",
      "input": "{\"amount\":12.5,\"currency\":\"USD\",\"date\":\"2026-09-15\"}",
      "parsed": true,
      "shape_valid": true,
      "semantic_valid": true,
      "semantic_errors": []
    },
    {
      "case": "missing-field",
      "input": "{\"amount\":12.5,\"date\":\"2026-09-15\"}",
      "parsed": true,
      "shape_valid": false,
      "semantic_valid": false,
      "semantic_errors": []
    },
    {
      "case": "numeric-string",
      "input": "{\"amount\":\"12.5\",\"currency\":\"USD\",\"date\":\"2026-09-15\"}",
      "parsed": true,
      "shape_valid": false,
      "semantic_valid": false,
      "semantic_errors": []
    },
    {
      "case": "impossible-date",
      "input": "{\"amount\":12.5,\"currency\":\"USD\",\"date\":\"2026-02-30\"}",
      "parsed": true,
      "shape_valid": true,
      "semantic_valid": false,
      "semantic_errors": [
        "date does not exist in the calendar"
      ]
    },
    {
      "case": "negative-amount",
      "input": "{\"amount\":-12.5,\"currency\":\"USD\",\"date\":\"2026-09-15\"}",
      "parsed": true,
      "shape_valid": true,
      "semantic_valid": false,
      "semantic_errors": [
        "amount must be positive for this fictional task"
      ]
    },
    {
      "case": "unsupported-currency",
      "input": "{\"amount\":12.5,\"currency\":\"ZZZ\",\"date\":\"2026-09-15\"}",
      "parsed": true,
      "shape_valid": true,
      "semantic_valid": false,
      "semantic_errors": [
        "currency is outside this fictional application allowlist"
      ]
    },
    {
      "case": "extra-key",
      "input": "{\"amount\":12.5,\"currency\":\"USD\",\"date\":\"2026-09-15\",\"approved\":true}",
      "parsed": true,
      "shape_valid": false,
      "semantic_valid": false,
      "semantic_errors": []
    },
    {
      "case": "fenced-json",
      "input": "```json\n{\"amount\":12.5,\"currency\":\"USD\",\"date\":\"2026-09-15\"}\n```",
      "parsed": false,
      "shape_valid": false,
      "semantic_valid": false,
      "semantic_errors": []
    }
  ],
  "totals": {
    "parsed": 7,
    "shape_valid": 4,
    "semantic_valid": 1
  }
}
