Adyen · JSON Structure

Legal Entity Onboarding Themes Structure

OnboardingThemes schema from Adyen API

Type: object Properties: 3 Required: 1
PaymentsFinancial ServicesFintech

OnboardingThemes is a JSON Structure definition published by Adyen, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

next previous themes

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/legal-entity-onboarding-themes-structure.json",
  "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"
  ],
  "name": "OnboardingThemes"
}