Adyen · Schema

ResponsePaymentMethod

ResponsePaymentMethod schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
brand string The card brand that the shopper used to pay. Only returned if `paymentMethod.type` is **scheme**.
type string The `paymentMethod.type` value used in the request.
View JSON Schema on GitHub

JSON Schema

checkout-response-payment-method-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-response-payment-method-schema.json",
  "title": "ResponsePaymentMethod",
  "description": "ResponsePaymentMethod schema from Adyen API",
  "type": "object",
  "properties": {
    "brand": {
      "description": "The card brand that the shopper used to pay. Only returned if `paymentMethod.type` is **scheme**.",
      "type": "string"
    },
    "type": {
      "description": "The `paymentMethod.type` value used in the request.",
      "type": "string"
    }
  }
}