Scotiabank · Schema

EFTPaymentRequest

BankingFinancePaymentsCanadaOpen Banking

Properties

Name Type Description
payment_type string
amount number
debit_account string
credit_account string
effective_date string
transaction_code string
View JSON Schema on GitHub

JSON Schema

scotiabank-eftpaymentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EFTPaymentRequest",
  "title": "EFTPaymentRequest",
  "type": "object",
  "properties": {
    "payment_type": {
      "type": "string",
      "enum": [
        "CREDIT",
        "DEBIT"
      ]
    },
    "amount": {
      "type": "number"
    },
    "debit_account": {
      "type": "string"
    },
    "credit_account": {
      "type": "string"
    },
    "effective_date": {
      "type": "string",
      "format": "date"
    },
    "transaction_code": {
      "type": "string"
    }
  }
}