{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/api_b2b_password_v1_ZxcvbnFeedback",
"title": "api_b2b_password_v1_ZxcvbnFeedback",
"type": "object",
"properties": {
"warning": {
"type": "string",
"description": "For zxcvbn validation, contains an end user consumable warning if the password is valid but not strong enough."
},
"suggestions": {
"type": "array",
"items": {
"type": "string"
},
"description": "For zxcvbn validation, contains end user consumable suggestions on how to improve the strength of the password."
}
},
"required": [
"warning",
"suggestions"
]
}