Adyen · JSON Structure

Configuration Repayment Structure

Repayment schema from Adyen API

Type: object Properties: 3 Required: 1
PaymentsFinancial ServicesFintech

Repayment is a JSON Structure definition published by Adyen, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

basisPoints term threshold

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-repayment-structure.json",
  "description": "Repayment schema from Adyen API",
  "type": "object",
  "properties": {
    "basisPoints": {
      "description": "The repayment that is deducted daily from incoming net volume, in [basis points](https://www.investopedia.com/terms/b/basispoint.asp).",
      "type": "int32"
    },
    "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"
  ],
  "name": "Repayment"
}