Synctera · Schema

minimum_payment_type

* RATE_OR_AMOUNT: > Describes a minimum payment scheme where the amount calculated is either a portion of the balance due, or a fixed, maximum amount, whichever is lesser. For example, if set to 1.00% and $30, the minimum payment will be calculated as 1.00% of the balance, but only up to a maximum of $30.

FinTechBaaSBankingPaymentsCard IssuingKYC
View JSON Schema on GitHub

JSON Schema

synctera-minimum-payment-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/minimum_payment_type",
  "title": "minimum_payment_type",
  "description": "* RATE_OR_AMOUNT: >\n  Describes a minimum payment scheme where the amount calculated is either a portion\n  of the balance due, or a fixed, maximum amount, whichever is lesser. For example, if\n  set to 1.00% and $30, the minimum payment will be calculated as 1.00% of the balance,\n  but only up to a maximum of $30.\n",
  "enum": [
    "RATE_OR_AMOUNT"
  ],
  "type": "string"
}