Adyen · Schema

OnboardingThemes

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

adyen-onboardingthemes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OnboardingThemes",
  "title": "OnboardingThemes",
  "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"
  ],
  "type": "object"
}