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