The response object containing detailed user information.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserDetailsResponseDTO", "title": "UserDetailsResponseDTO", "type": "object", "description": "The response object containing detailed user information.", "properties": { "id": { "type": "string", "description": "Unique ID of the user", "example": "123e4567-e89b-12d3-a456-426614174000" }, "firstName": { "type": "string", "description": "First name of the user", "example": "John" }, "lastName": { "type": "string", "description": "Last name of the user", "example": "Doe" }, "email": { "type": "string", "description": "Email address of the user", "example": "[email protected]" } } }