{ "$schema": "https://json-schema.org/draft/2020-12", "$id": "https://raw.githubusercontent.com/api-evangelist/umami/refs/heads/main/json-schema/umami-session-list-schema.json", "title": "SessionList", "description": "Paginated list of sessions", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/$defs/Session" } }, "count": { "type": "integer", "description": "Total number of records", "examples": [ 100 ] }, "page": { "type": "integer", "description": "Current page number", "examples": [ 1 ] }, "pageSize": { "type": "integer", "description": "Records per page", "examples": [ 20 ] } } }