Errors

Validation failed

The request body or the entry data failed validation against its collection schema. The fields array names every offending path and what is wrong with it.

Code
VALIDATION_FAILED
HTTP status
422
Type
https://myna.sh/errors/validation-failed

What to do

Correct the paths listed in fields. Validating a whole change set first surfaces the same errors together, including the collection policy rules a single write cannot see.

Full error reference · All codes

application/problem+json
{
  "type": "https://myna.sh/errors/validation-failed",
  "title": "Validation failed",
  "status": 422,
  "code": "VALIDATION_FAILED",
  "detail": "A human-readable explanation of this particular occurrence.",
  "requestId": "req_01k…",
  "fields": [
    {
      "path": "title",
      "message": "Required."
    }
  ]
}