{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateSender", "title": "CreateSender", "type": "object", "required": [ "name", "email" ], "properties": { "name": { "type": "string", "description": "Display name for the new sender." }, "email": { "type": "string", "format": "email", "description": "Email address for the new sender." } } }