Adyen · JSON Structure

Configuration Webhooks Phone Structure

Phone schema from Adyen API

Type: object Properties: 2 Required: 2
PaymentsFinancial ServicesFintech

Phone is a JSON Structure definition published by Adyen, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

number type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-webhooks-phone-structure.json",
  "description": "Phone schema from Adyen API",
  "type": "object",
  "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"
  ],
  "name": "Phone"
}