{ "$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" ] }