{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-structure/openapi-v2-message-attachment-structure.json", "name": "MessageAttachment", "description": "MessageAttachment schema from AhaSend API", "type": "object", "properties": { "filename": { "type": "string", "description": "Original filename of the attachment", "example": "document.pdf" }, "content": { "type": "string", "description": "Base64 encoded attachment content", "example": "example_value" }, "content_type": { "type": "string", "description": "MIME content type of the attachment", "example": "application/pdf" }, "content_id": { "type": "string", "description": "Content-ID for inline attachments", "nullable": true, "example": "image001@example.com" } }, "required": [ "filename", "content", "content_type" ] }