Adyen · Schema

EncryptedOrderData

EncryptedOrderData schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
orderData string The encrypted order data.
pspReference string The `pspReference` that belongs to the order.
View JSON Schema on GitHub

JSON Schema

checkout-encrypted-order-data-schema.json Raw ↑
{
  "$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"
  ]
}