{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/notification-webhooks-phone-schema.json", "title": "Phone", "description": "Phone schema from Adyen API", "properties": { "number": { "description": "The full phone number provided as a single string. \nFor example, **\"0031 6 11 22 33 44\"**, **\"+316/1122-3344\"**, \n\n or **\"(0031) 611223344\"**.", "type": "string" }, "type": { "description": "Type of phone number.\nPossible values: \n**Landline**, **Mobile**.\n", "enum": [ "Landline", "Mobile" ], "type": "string" } }, "required": [ "number", "type" ], "type": "object" }