Adyen · JSON Structure

Terminal Instalment Structure

Instalment schema from Adyen API

Type: object Properties: 10
PaymentsFinancial ServicesFintech

Instalment is a JSON Structure definition published by Adyen, describing 10 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

InstalmentType SequenceNumber PlanID Period PeriodUnit FirstPaymentDate TotalNbOfPayments CumulativeAmount FirstAmount Charges

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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