{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreatePasswordResetTokenDto", "title": "CreatePasswordResetTokenDto", "type": "object", "properties": { "email": { "type": "string", "format": "email", "description": "The email address of the user requesting a password reset.", "example": "[email protected]" } }, "required": [ "email" ] }