Adyen · Schema

PaymentAccountStatus

PaymentsFinancial ServicesFintech

Properties

Name Type Description
PaymentInstrumentData object
CurrentBalance number
Currency string
PaymentAcquirerData object
View JSON Schema on GitHub

JSON Schema

adyen-paymentaccountstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentAccountStatus",
  "title": "PaymentAccountStatus",
  "type": "object",
  "properties": {
    "PaymentInstrumentData": {
      "$ref": "#/components/schemas/PaymentInstrumentData"
    },
    "CurrentBalance": {
      "type": "number",
      "maximum": 99999999.999999,
      "minimum": 0
    },
    "Currency": {
      "type": "string",
      "pattern": "^[A-Z]{3,3}$"
    },
    "PaymentAcquirerData": {
      "$ref": "#/components/schemas/PaymentAcquirerData"
    }
  }
}