{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-contact-details-schema.json", "title": "ContactDetails", "description": "ContactDetails schema from Adyen API", "type": "object", "properties": { "address": { "description": "The address of the account holder.", "$ref": "#/components/schemas/Address" }, "email": { "description": "The email address of the account holder.", "type": "string" }, "phone": { "description": "The phone number of the account holder.", "$ref": "#/components/schemas/Phone" }, "webAddress": { "description": "The URL of the account holder's website.", "type": "string" } }, "required": [ "email", "phone", "address" ] }