{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListUserSessionsPaginatedResponseContent",
"title": "ListUserSessionsPaginatedResponseContent",
"type": "object",
"additionalProperties": true,
"properties": {
"sessions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SessionResponseContent"
}
},
"next": {
"type": "string",
"description": "A cursor to be used as the \"from\" query parameter for the next page of results."
}
}
}