Paginated list of sessions
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-livy/refs/heads/main/json-schema/rest-api-session-list-schema.json", "title": "SessionList", "description": "Paginated list of sessions", "type": "object", "properties": { "from": { "type": "integer", "example": 0 }, "total": { "type": "integer", "example": 5 }, "sessions": { "type": "array", "items": { "$ref": "#/components/schemas/Session" } } } }