Adyen · Schema

EncryptedOrderData

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

adyen-encryptedorderdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EncryptedOrderData",
  "title": "EncryptedOrderData",
  "properties": {
    "orderData": {
      "description": "The encrypted order data.",
      "type": "string"
    },
    "pspReference": {
      "description": "The `pspReference` that belongs to the order.",
      "type": "string"
    }
  },
  "required": [
    "pspReference",
    "orderData"
  ],
  "type": "object"
}