{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/checkout-api-swish_req.json", "title": "swish_req", "description": "Swish payment configuration", "type": "object", "properties": { "app_phone_number": { "maxLength": 18, "pattern": "^[0-9-\\s\\-+().-]+$", "type": "string", "description": "Indicates the phone number registered with Swish Mobile APP." }, "shopper_interaction": { "type": "string", "description": "Used to indicate the channel used by to send they checkout link
* ECOMMERCE
* MCOMMERCE ", "default": "ECOMMERCE", "enum": [ "ECOMMERCE", "MCOMMERCE" ] } } }