{
"$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"
]
}