Properties
| Name | Type | Description |
|---|---|---|
| InstalmentType | object | |
| SequenceNumber | integer | |
| PlanID | string | |
| Period | integer | |
| PeriodUnit | object | |
| FirstPaymentDate | string | |
| TotalNbOfPayments | integer | |
| CumulativeAmount | number | |
| FirstAmount | number | |
| Charges | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Instalment",
"title": "Instalment",
"type": "object",
"properties": {
"InstalmentType": {
"$ref": "#/components/schemas/InstalmentType"
},
"SequenceNumber": {
"type": "integer"
},
"PlanID": {
"type": "string",
"pattern": "^.+$"
},
"Period": {
"type": "integer"
},
"PeriodUnit": {
"$ref": "#/components/schemas/PeriodUnit"
},
"FirstPaymentDate": {
"type": "string",
"format": "date"
},
"TotalNbOfPayments": {
"type": "integer"
},
"CumulativeAmount": {
"type": "number",
"maximum": 99999999.999999,
"minimum": 0
},
"FirstAmount": {
"type": "number",
"maximum": 99999999.999999,
"minimum": 0
},
"Charges": {
"type": "number",
"maximum": 99999999.999999,
"minimum": 0
}
}
}