{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-instalment-structure.json", "description": "Instalment schema from Adyen API", "type": "object", "properties": { "InstalmentType": { "$ref": "#/components/schemas/InstalmentType" }, "SequenceNumber": { "type": "int32" }, "PlanID": { "type": "string", "pattern": "^.+$" }, "Period": { "type": "int32" }, "PeriodUnit": { "$ref": "#/components/schemas/PeriodUnit" }, "FirstPaymentDate": { "type": "date" }, "TotalNbOfPayments": { "type": "int32" }, "CumulativeAmount": { "type": "double", "maximum": 99999999.999999, "minimum": 0 }, "FirstAmount": { "type": "double", "maximum": 99999999.999999, "minimum": 0 }, "Charges": { "type": "double", "maximum": 99999999.999999, "minimum": 0 } }, "name": "Instalment" }