Scotiabank · Schema

RequestForPaymentRequest

BankingFinancePaymentsCanadaOpen Banking

Properties

Name Type Description
amount number
payer_email string
due_date string
message string
View JSON Schema on GitHub

JSON Schema

scotiabank-requestforpaymentrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequestForPaymentRequest",
  "title": "RequestForPaymentRequest",
  "type": "object",
  "properties": {
    "amount": {
      "type": "number"
    },
    "payer_email": {
      "type": "string",
      "format": "email"
    },
    "due_date": {
      "type": "string",
      "format": "date"
    },
    "message": {
      "type": "string"
    }
  }
}