Contact 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/api-contact-schema.json", "title": "Contact", "description": "Contact schema from AhaSend API", "type": "object", "properties": { "email": { "type": "string", "examples": [ "[email protected]", "[email protected]" ], "example": "[email protected]" }, "name": { "type": "string", "examples": [ "John Smith", "Jane Williams" ], "example": "Example Name" } }, "required": [ "email" ] }