Adyen · Schema

Repayment

PaymentsFinancial ServicesFintech

Properties

Name Type Description
basisPoints integer The repayment that is deducted daily from incoming net volume, in [basis points](https://www.investopedia.com/terms/b/basispoint.asp).
term object An object containing the details of the configuration for repayment term.
threshold object An object containing the details of the 30-day repayment threshold.
View JSON Schema on GitHub

JSON Schema

adyen-repayment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Repayment",
  "title": "Repayment",
  "properties": {
    "basisPoints": {
      "description": "The repayment that is deducted daily from incoming net volume, in [basis points](https://www.investopedia.com/terms/b/basispoint.asp).",
      "format": "int32",
      "type": "integer"
    },
    "term": {
      "description": "An object containing the details of the configuration for repayment term.",
      "$ref": "#/components/schemas/RepaymentTerm"
    },
    "threshold": {
      "description": "An object containing the details of the 30-day repayment threshold.",
      "$ref": "#/components/schemas/ThresholdRepayment"
    }
  },
  "required": [
    "basisPoints"
  ],
  "type": "object"
}