Adyen · Schema

OnboardingThemes

OnboardingThemes schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
next string The next page. Only present if there is a next page.
previous string The previous page. Only present if there is a previous page.
themes array List of onboarding themes.
View JSON Schema on GitHub

JSON Schema

legal-entity-onboarding-themes-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/legal-entity-onboarding-themes-schema.json",
  "title": "OnboardingThemes",
  "description": "OnboardingThemes schema from Adyen API",
  "type": "object",
  "properties": {
    "next": {
      "description": "The next page. Only present if there is a next page.",
      "type": "string"
    },
    "previous": {
      "description": "The previous page. Only present if there is a previous page.",
      "type": "string"
    },
    "themes": {
      "description": "List of onboarding themes.",
      "items": {
        "$ref": "#/components/schemas/OnboardingTheme"
      },
      "type": "array"
    }
  },
  "required": [
    "themes"
  ]
}