{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/ecommerce-api-applepaymerchantvalidationdto.json", "title": "ApplePayMerchantValidationDto", "description": "ApplePayMerchantValidationDto from Verifone eCommerce API", "type": "object", "properties": { "validation_url": { "type": "string", "description": "The URL pointing to the Apple Pay validation location.\n\n**Note**: Use the URL below according to your Verifone environment:\n - Sandbox: https://apple-pay-gateway-cert.apple.com/paymentservices/startSession\n - Production: https://apple-pay-gateway.apple.com/paymentservices/startSession\n" }, "domain": { "type": "string", "description": "The domain from which the payment request will be initiated." }, "payment_provider_contract": { "type": "string", "description": "The identifier of payment provider contract you want to process the transaction request with.", "format": "uuid-flexible" } }, "required": [ "validation_url", "domain", "payment_provider_contract" ] }