{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-mobile-data-schema.json", "title": "MobileData", "description": "Mobile phone is used as a payment instrument for the transaction. Information related to the mobile for the payment transaction.", "type": "object", "properties": { "MobileCountryCode": { "type": "integer", "minimum": 3, "maximum": 3, "description": "If data available." }, "MobileNetworkCode": { "type": "integer", "minimum": 2, "maximum": 3, "description": "If data available." }, "MaskedMSISDN": { "type": "integer", "description": "If data available." }, "Geolocation": { "$ref": "#/components/schemas/Geolocation" }, "ProtectedMobileData": { "type": "string", "description": "SensitiveMobileData." }, "SensitiveMobileData": { "$ref": "#/components/schemas/SensitiveMobileData" } } }