Adyen · JSON Structure

Checkout Configuration Structure

Configuration schema from Adyen API

Type: object Properties: 4
PaymentsFinancial ServicesFintech

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

Properties

avs cardHolderName installments shopperInput

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-configuration-structure.json",
  "description": "Configuration schema from Adyen API",
  "type": "object",
  "properties": {
    "avs": {
      "description": "Describes the configuration for AVS ([Address Verification System](https://en.wikipedia.org/wiki/Address_Verification_System)).",
      "$ref": "#/components/schemas/Avs"
    },
    "cardHolderName": {
      "x-addedInVersion": "37",
      "description": "Determines whether the cardholder name should be provided or not.\n\nPermitted values:\n* NONE\n* OPTIONAL\n* REQUIRED",
      "enum": [
        "NONE",
        "OPTIONAL",
        "REQUIRED"
      ],
      "type": "string"
    },
    "installments": {
      "description": "Describes the configuration for [installment payments](https://docs.adyen.com/payment-methods/cards/credit-card-installments).",
      "$ref": "#/components/schemas/InstallmentsNumber"
    },
    "shopperInput": {
      "x-addedInVersion": "37",
      "description": "Determines how to display the details fields.",
      "$ref": "#/components/schemas/ShopperInput"
    }
  },
  "name": "Configuration"
}