# Status enum

## Status enum
| `status` | Meaning |
|  --- | --- |
| `PENDING` | Queued, not yet picked up by a worker. |
| `RUNNING` | A worker is processing rows. |
| `COMPLETED` | Finished. If `error_count > 0`, those specific rows failed and `errors[]` lists them — the rest were applied. |
| `FAILED` | The whole job failed before any rows were applied (e.g. a validation error that affected the entire payload). |

`COMPLETED` is always a terminal *partial-success* status: a non-zero
`error_count` does not mean the job failed; it means those rows were
skipped while the others were applied. Treat `errors[]` as the
authoritative per-row failure list.

Version: 1.33.0
