Adyen · Schema

PaymentMethodGroup

PaymentMethodGroup schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
name string The name of the group.
paymentMethodData string Echo data to be used if the payment method is displayed as part of this group.
type string The unique code of the group.
View JSON Schema on GitHub

JSON Schema

checkout-payment-method-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-payment-method-group-schema.json",
  "title": "PaymentMethodGroup",
  "description": "PaymentMethodGroup schema from Adyen API",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the group.",
      "type": "string"
    },
    "paymentMethodData": {
      "description": "Echo data to be used if the payment method is displayed as part of this group.",
      "type": "string"
    },
    "type": {
      "description": "The unique code of the group.",
      "type": "string"
    }
  }
}