{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SendEmailChangeDto", "title": "SendEmailChangeDto", "type": "object", "properties": { "new_email": { "type": "string", "description": "The new email address to change to.", "example": "[email protected]" } }, "required": [ "new_email" ] }