Adyen · JSON Structure

Terminal Loyalty Totals Structure

Totals of the loyalty transaction during the reconciliation period.

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

LoyaltyTotals is a JSON Structure definition published by Adyen, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

TransactionType TransactionCount TransactionAmount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-loyalty-totals-structure.json",
  "description": "Totals of the loyalty transaction during the reconciliation period.",
  "type": "object",
  "properties": {
    "TransactionType": {
      "$ref": "#/components/schemas/TransactionType"
    },
    "TransactionCount": {
      "type": "int32",
      "description": "Number of processed transaction during the period."
    },
    "TransactionAmount": {
      "type": "double",
      "maximum": 99999999.999999,
      "minimum": 0,
      "description": "Sum of amount of processed transaction during the period."
    }
  },
  "required": [
    "TransactionType",
    "TransactionCount",
    "TransactionAmount"
  ],
  "name": "LoyaltyTotals"
}