Request body for creating users.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateUserRequest", "title": "CreateUserRequest", "description": "Request body for creating users.", "required": [ "email" ], "type": "object", "properties": { "name": { "description": "Name of the user.", "type": "string", "example": "John" }, "email": { "description": "Email of the user.", "type": "string", "example": "[email protected]" } } }