{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/api-email-schema.json", "title": "Email", "description": "Email schema from AhaSend API", "type": "object", "properties": { "from": { "$ref": "#/components/schemas/Contact" }, "recipients": { "type": "array", "description": "Specifies the list of recipients to which message will be sent.", "items": { "$ref": "#/components/schemas/Contact" }, "example": [ { "email": "user@example.com", "name": "Example Name" } ] }, "content": { "$ref": "#/components/schemas/Content" } }, "required": [ "from", "recipients", "content" ] }