Adyen · Schema

InstallmentOption

PaymentsFinancial ServicesFintech

Properties

Name Type Description
maxValue integer The maximum number of installments offered for this payment method.
plans array Defines the type of installment plan. If not set, defaults to **regular**. Possible values: * **regular** * **revolving**
preselectedValue integer Preselected number of installments offered for this payment method.
values array An array of the number of installments that the shopper can choose from. For example, **[2,3,5]**. This cannot be specified simultaneously with `maxValue`.
View JSON Schema on GitHub

JSON Schema

adyen-installmentoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InstallmentOption",
  "title": "InstallmentOption",
  "properties": {
    "maxValue": {
      "description": "The maximum number of installments offered for this payment method.",
      "format": "int32",
      "type": "integer"
    },
    "plans": {
      "x-addedInVersion": "64",
      "description": "Defines the type of installment plan. If not set, defaults to **regular**.\n\nPossible values:\n* **regular**\n* **revolving**",
      "items": {
        "enum": [
          "regular",
          "revolving"
        ],
        "type": "string"
      },
      "type": "array"
    },
    "preselectedValue": {
      "x-addedInVersion": "64",
      "description": "Preselected number of installments offered for this payment method.",
      "format": "int32",
      "type": "integer"
    },
    "values": {
      "x-addedInVersion": "64",
      "description": "An array of the number of installments that the shopper can choose from. For example, **[2,3,5]**. This cannot be specified simultaneously with `maxValue`.",
      "items": {
        "format": "int32",
        "type": "integer"
      },
      "type": "array"
    }
  },
  "type": "object"
}