Adyen · Schema

PlatformPayment

PaymentsFinancial ServicesFintech

Properties

Name Type Description
account string The account given in the related split.
description string The description of the related split.
modificationMerchantReference string The merchant reference of the modification.
modificationPspReference string The pspReference of the modification.
paymentMerchantReference string The merchant reference of the payment.
paymentPspReference string The pspReference of the payment.
reference string The reference of the related split.
type string The type of the related split.
View JSON Schema on GitHub

JSON Schema

adyen-platformpayment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlatformPayment",
  "title": "PlatformPayment",
  "properties": {
    "account": {
      "description": "The account given in the related split.",
      "type": "string"
    },
    "description": {
      "description": "The description of the related split.",
      "type": "string"
    },
    "modificationMerchantReference": {
      "description": "The merchant reference of the modification.",
      "type": "string"
    },
    "modificationPspReference": {
      "description": "The pspReference of the modification.",
      "type": "string"
    },
    "paymentMerchantReference": {
      "description": "The merchant reference of the payment.",
      "type": "string"
    },
    "paymentPspReference": {
      "description": "The pspReference of the payment.",
      "type": "string"
    },
    "reference": {
      "description": "The reference of the related split.",
      "type": "string"
    },
    "type": {
      "description": "The type of the related split.",
      "enum": [
        "BalanceAccount",
        "Commission",
        "Default",
        "PaymentFee",
        "VAT"
      ],
      "type": "string"
    }
  }
}