Contact information for a merchant.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Contact", "title": "Contact", "type": "object", "description": "Contact information for a merchant.", "properties": { "name": { "type": "string", "description": "The contact person's name." }, "email": { "type": "string", "format": "email", "description": "The contact email address." }, "phone": { "type": "string", "description": "The contact phone number." } } }