Adyen · Schema

PhoneNumber

PhoneNumber schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
number string The full phone number, including the country code. For example, **+3112345678**.
type string The type of phone number. Possible values: **mobile**, **landline**, **sip**, **fax.**
View JSON Schema on GitHub

JSON Schema

legal-entity-phone-number-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/legal-entity-phone-number-schema.json",
  "title": "PhoneNumber",
  "description": "PhoneNumber schema from Adyen API",
  "type": "object",
  "properties": {
    "number": {
      "description": "The full phone number, including the country code. For example, **+3112345678**.",
      "type": "string"
    },
    "type": {
      "description": "The type of phone number.\n Possible values: **mobile**, **landline**, **sip**, **fax.** ",
      "type": "string"
    }
  },
  "required": [
    "number"
  ]
}