Adyen · Schema

Phone

PaymentsFinancial ServicesFintech

Properties

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

JSON Schema

adyen-phone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Phone",
  "title": "Phone",
  "properties": {
    "cc": {
      "description": "Country code. Length: 13 characters.",
      "maxLength": 3,
      "minLength": 1,
      "type": "string"
    },
    "subscriber": {
      "description": "Subscriber number. Maximum length: 15 characters.",
      "maxLength": 15,
      "type": "string"
    }
  },
  "type": "object"
}