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