Adyen · JSON Structure

Checkout Installments Structure

Installments schema from Adyen API

Type: object Properties: 2 Required: 1
PaymentsFinancial ServicesFintech

Installments is a JSON Structure definition published by Adyen, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

plan value

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/checkout-installments-structure.json",
  "description": "Installments schema from Adyen API",
  "type": "object",
  "properties": {
    "plan": {
      "x-addedInVersion": "64",
      "description": "The installment plan, used for [card installments in Japan](https://docs.adyen.com/payment-methods/cards/credit-card-installments#make-a-payment-japan). By default, this is set to **regular**. Possible values:\n* **regular**\n* **revolving**\n",
      "enum": [
        "regular",
        "revolving"
      ],
      "type": "string"
    },
    "value": {
      "description": "Defines the number of installments. Its value needs to be greater than zero.\n\nUsually, the maximum allowed number of installments is capped. For example, it may not be possible to split a payment in more than 24 installments. The acquirer sets this upper limit, so its value may vary.",
      "type": "int32"
    }
  },
  "required": [
    "value"
  ],
  "name": "Installments"
}