Adyen · Schema

PaymentTotals

Totals of the payment transaction during the reconciliation period.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
TransactionType object
TransactionCount integer Number of processed transaction during the period.
TransactionAmount number Sum of amount of processed transaction during the period.
View JSON Schema on GitHub

JSON Schema

adyen-paymenttotals-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentTotals",
  "title": "PaymentTotals",
  "type": "object",
  "description": "Totals of the payment transaction during the reconciliation period.",
  "properties": {
    "TransactionType": {
      "$ref": "#/components/schemas/TransactionType"
    },
    "TransactionCount": {
      "type": "integer",
      "description": "Number of processed transaction during the period."
    },
    "TransactionAmount": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0,
      "description": "Sum of amount of processed transaction during the period."
    }
  },
  "required": [
    "TransactionType",
    "TransactionCount",
    "TransactionAmount"
  ]
}