{
  "errors": {
    "user": {
      "email": [{
        "error_type": "pattern",
        "statistics": {
          "error_count": 3,
          "null_count": 0,
          "total_count": 100,
          "missing_count": 0
        },
        "schema_path": "user.email",
        "error_sample": [
          { "index": 5, "value": "invalid-email" },
          { "index": 12, "value": "also-invalid" }
        ],
        "check": {
          "pattern": "^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}$"
        }
      }],
      "age": [{
        "error_type": "type",
        "statistics": {
          "error_count": 1,
          "null_count": 0,
          "total_count": 100,
          "missing_count": 0
        },
        "schema_path": "user.age",
        "error_sample": [
          { "index": 23, "value": "thirty" }
        ],
        "check": {
          "type": "number"
        }
      }]
    }
  }
}