Adyen · Schema

CheckoutOrderResponse

CheckoutOrderResponse schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
amount object The initial amount of the order.
expiresAt string The expiry date for the order.
orderData string The encrypted order data.
pspReference string The `pspReference` that belongs to the order.
reference string The merchant reference for the order.
remainingAmount object The updated remaining amount.
View JSON Schema on GitHub

JSON Schema

checkout-checkout-order-response-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-checkout-order-response-schema.json",
  "title": "CheckoutOrderResponse",
  "description": "CheckoutOrderResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "amount": {
      "description": "The initial amount of the order.",
      "$ref": "#/components/schemas/Amount"
    },
    "expiresAt": {
      "description": "The expiry date for the order.",
      "type": "string"
    },
    "orderData": {
      "description": "The encrypted order data.",
      "type": "string"
    },
    "pspReference": {
      "description": "The `pspReference` that belongs to the order.",
      "type": "string"
    },
    "reference": {
      "description": "The merchant reference for the order.",
      "type": "string"
    },
    "remainingAmount": {
      "description": "The updated remaining amount.",
      "$ref": "#/components/schemas/Amount"
    }
  },
  "required": [
    "pspReference"
  ]
}