Rest API - Error Handling
Given this REST API error response JSON, what is the error message for the password field?
{
"error": {
"message": "Validation failed",
"fields": {
"email": "Invalid format",
"password": "Too short"
}
}
}