Verifone · Schema

Phone_number

Phone number

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
phoneType string Customer phone type
value string Customer phone number
View JSON Schema on GitHub

JSON Schema

paypal-ecommerce-api-phone_number.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/paypal-ecommerce-api-phone_number.json",
  "title": "Phone_number",
  "description": "Phone number",
  "required": [
    "value"
  ],
  "type": "object",
  "properties": {
    "phoneType": {
      "type": "string",
      "description": "Customer phone type",
      "enum": [
        "FAX",
        "HOME",
        "MOBILE",
        "OTHER",
        "PAGER"
      ]
    },
    "value": {
      "type": "string",
      "description": "Customer phone number"
    }
  }
}