Adyen · Schema

PaymentData

PaymentsFinancial ServicesFintech

Properties

Name Type Description
PaymentType object
SplitPaymentFlag boolean
RequestedValidityDate string
CardAcquisitionReference object
Instalment object
CustomerOrder object
PaymentInstrumentData object
View JSON Schema on GitHub

JSON Schema

adyen-paymentdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentData",
  "title": "PaymentData",
  "type": "object",
  "properties": {
    "PaymentType": {
      "$ref": "#/components/schemas/PaymentType"
    },
    "SplitPaymentFlag": {
      "type": "boolean",
      "default": false
    },
    "RequestedValidityDate": {
      "type": "string",
      "format": "date"
    },
    "CardAcquisitionReference": {
      "$ref": "#/components/schemas/TransactionIDType"
    },
    "Instalment": {
      "$ref": "#/components/schemas/Instalment"
    },
    "CustomerOrder": {
      "$ref": "#/components/schemas/CustomerOrder"
    },
    "PaymentInstrumentData": {
      "$ref": "#/components/schemas/PaymentInstrumentData"
    }
  }
}