Phone schema from Adyen API
{ "$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" } } }