{
"$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"
]
}