MessageContentPart schema from AhaSend API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/openapi-v2-message-content-part-schema.json", "title": "MessageContentPart", "description": "MessageContentPart schema from AhaSend API", "type": "object", "properties": { "content_type": { "type": "string", "description": "MIME content type (e.g., \"text/plain\", \"text/html\")", "example": "text/html" }, "content": { "type": "string", "description": "The actual content for this part", "example": "example_value" } }, "required": [ "content_type", "content" ] }