Adyen · Schema

RepaymentTerm

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

adyen-repaymentterm-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RepaymentTerm",
  "title": "RepaymentTerm",
  "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"
  ],
  "type": "object"
}