RejectedRow

A row the server couldn't accept. Original content is echoed back so the caller can fix and resend without position tracking.

Properties

rowobjectrequired

The original row content as sent — echoed back exactly.

errorsarray ofrequired
fieldstringrequired

The field that failed validation, or `_row` for row-level errors.

codestringrequired

Machine-readable failure code. Known values include `malformed_row`, `unknown_field`.

messagestringrequired

Human-readable failure message.

Example

RejectedRow example
{
  "row": {},
  "errors": [
    {
      "field": "email",
      "code": "malformed_row",
      "message": "string"
    }
  ]
}