Adyen · Schema

PaymentRequest

Request sent to terminal to initiate payment. It conveys Information related to the Payment transaction to process. Content of the Payment Request message.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
SaleData object
PaymentTransaction object
PaymentData object
LoyaltyData array
View JSON Schema on GitHub

JSON Schema

terminal-payment-request-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/terminal-payment-request-schema.json",
  "title": "PaymentRequest",
  "description": "Request sent to terminal to initiate payment.  It conveys Information related to the Payment transaction to process. Content of the Payment Request message.",
  "type": "object",
  "properties": {
    "SaleData": {
      "$ref": "#/components/schemas/SaleData"
    },
    "PaymentTransaction": {
      "$ref": "#/components/schemas/PaymentTransaction"
    },
    "PaymentData": {
      "$ref": "#/components/schemas/PaymentData"
    },
    "LoyaltyData": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LoyaltyData"
      }
    }
  },
  "required": [
    "SaleData",
    "PaymentTransaction"
  ]
}