Adyen · Schema

SofortInfo

SofortInfo schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
currencyCode string Sofort currency code. For example, **EUR**.
logo string Sofort logo. Format: Base64-encoded string.
View JSON Schema on GitHub

JSON Schema

management-sofort-info-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/management-sofort-info-schema.json",
  "title": "SofortInfo",
  "description": "SofortInfo schema from Adyen API",
  "type": "object",
  "properties": {
    "currencyCode": {
      "description": "Sofort currency code. For example, **EUR**.",
      "type": "string"
    },
    "logo": {
      "description": "Sofort logo. Format: Base64-encoded string.",
      "type": "string"
    }
  },
  "required": [
    "logo",
    "currencyCode"
  ]
}