Properties
| Name | Type | Description |
|---|---|---|
| number | string | The full phone number provided as a single string. For example, **"0031 6 11 22 33 44"**, **"+316/1122-3344"**, or **"(0031) 611223344"**. |
| type | string | Type of phone number. Possible values: **Landline**, **Mobile**. |
JSON Schema
{
"$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"
}