{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginatedPersonRecordList", "title": "PaginatedPersonRecordList", "type": "object", "properties": { "next": { "type": "string", "nullable": true, "format": "uri", "example": "https://app.posthog.com/api/projects/{project_id}/accounts/?offset=400&limit=100" }, "previous": { "type": "string", "nullable": true, "format": "uri", "example": "https://app.posthog.com/api/projects/{project_id}/accounts/?offset=400&limit=100" }, "count": { "type": "integer", "example": 400 }, "results": { "type": "array", "items": { "$ref": "#/components/schemas/PersonRecord" } } } }