{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginatedScreeningQuestionList", "title": "PaginatedScreeningQuestionList", "type": "object", "properties": { "next": { "type": [ "string", "null" ] }, "previous": { "type": [ "string", "null" ] }, "results": { "type": "array", "items": { "$ref": "#/components/schemas/ScreeningQuestion" } } } }