Synctera · Schema

balance

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
balance integer balance in ISO 4217 minor currency units. Unit in cents.
type object
View JSON Schema on GitHub

JSON Schema

synctera-balance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/balance",
  "title": "balance",
  "properties": {
    "balance": {
      "description": "balance in ISO 4217 minor currency units. Unit in cents.",
      "example": 43,
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "type": {
      "$ref": "#/components/schemas/balance_type"
    }
  },
  "required": [
    "type",
    "balance"
  ],
  "type": "object"
}