{ "$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": [ "john@nasa.gov", "jane@nasa.gov" ], "example": "user@example.com" }, "name": { "type": "string", "examples": [ "John Smith", "Jane Williams" ], "example": "Example Name" } }, "required": [ "email" ] }