{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/api_password_v1_StrengthCheckRequest", "title": "api_password_v1_StrengthCheckRequest", "type": "object", "properties": { "password": { "type": "string", "description": "The password for the user. Any UTF8 character is allowed, e.g. spaces, emojis, non-English characters, etc." }, "email": { "type": "string", "description": "The email address of the end user." } }, "description": "Request type", "required": [ "password" ] }