What HTTP 422 means
RFC 9110 §15.5.21 (originally WebDAV RFC 4918). Most API frameworks (FastAPI, Laravel, Rails) use 422 for input validation failures with structured field errors in the response body.
Typical causes
- Pydantic/Joi validation failure
- Field format wrong (email, URL, date)
- Business rule violation
- Required field missing