Adyen · Schema

Phone

Phone schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
cc string Country code. Length: 1–3 characters.
subscriber string Subscriber number. Maximum length: 15 characters.
View JSON Schema on GitHub

JSON Schema

payments-phone-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/payments-phone-schema.json",
  "title": "Phone",
  "description": "Phone schema from Adyen API",
  "type": "object",
  "properties": {
    "cc": {
      "description": "Country code. Length: 1\u20133 characters.",
      "maxLength": 3,
      "minLength": 1,
      "type": "string"
    },
    "subscriber": {
      "description": "Subscriber number. Maximum length: 15 characters.",
      "maxLength": 15,
      "type": "string"
    }
  }
}