Adyen · Schema

RepaymentTerm

RepaymentTerm schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
estimatedDays integer The estimated term for repaying the grant, in days.
maximumDays integer The maximum term for repaying the grant, in days. Only applies when `contractType` is **loan**.
View JSON Schema on GitHub

JSON Schema

configuration-repayment-term-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-repayment-term-schema.json",
  "title": "RepaymentTerm",
  "description": "RepaymentTerm schema from Adyen API",
  "type": "object",
  "properties": {
    "estimatedDays": {
      "description": "The estimated term for repaying the grant, in days.",
      "format": "int32",
      "type": "integer"
    },
    "maximumDays": {
      "description": "The maximum term for repaying the grant, in days. Only applies when `contractType` is **loan**.",
      "format": "int32",
      "type": "integer"
    }
  },
  "required": [
    "estimatedDays"
  ]
}