{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-encrypted-order-data-schema.json", "title": "EncryptedOrderData", "description": "EncryptedOrderData schema from Adyen API", "type": "object", "properties": { "orderData": { "description": "The encrypted order data.", "type": "string" }, "pspReference": { "description": "The `pspReference` that belongs to the order.", "type": "string" } }, "required": [ "pspReference", "orderData" ] }