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