Adyen · Schema

VippsInfo

PaymentsFinancial ServicesFintech

Properties

Name Type Description
logo string Vipps logo. Format: Base64-encoded string.
subscriptionCancelUrl string Vipps subscription cancel url (required in case of [recurring payments](https://docs.adyen.com/online-payments/tokenization))
View JSON Schema on GitHub

JSON Schema

adyen-vippsinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VippsInfo",
  "title": "VippsInfo",
  "properties": {
    "logo": {
      "description": "Vipps logo. Format: Base64-encoded string.",
      "type": "string"
    },
    "subscriptionCancelUrl": {
      "description": "Vipps subscription cancel url (required in case of [recurring payments](https://docs.adyen.com/online-payments/tokenization))",
      "type": "string"
    }
  },
  "required": [
    "logo"
  ],
  "type": "object"
}