{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginatedClickhouseEventList", "title": "PaginatedClickhouseEventList", "type": "object", "properties": { "next": { "type": "string", "nullable": true, "format": "uri", "example": "http://api.example.org/accounts/?offset=400&limit=100" }, "results": { "type": "array", "items": { "$ref": "#/components/schemas/ClickhouseEvent" } } } }