Scotiabank · Schema

PaymentTrackingResponse

BankingFinancePaymentsCanadaOpen Banking

Properties

Name Type Description
uetr string
status string
status_description string
events array
View JSON Schema on GitHub

JSON Schema

scotiabank-paymenttrackingresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentTrackingResponse",
  "title": "PaymentTrackingResponse",
  "type": "object",
  "properties": {
    "uetr": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "status_description": {
      "type": "string"
    },
    "events": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "timestamp": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string"
          },
          "location": {
            "type": "string"
          }
        }
      }
    }
  }
}