Skip to content
Developer Preview

SessionListResult

session/list result. Ordering is updatedAt descending.

  • nextCursor
  • sessions
Source

schema/msp/experimental/msp.schema.json#/types/SessionListResult

{
"description": "`session/list` result. Ordering is `updatedAt` descending.",
"properties": {
"nextCursor": {
"description": "The next page's cursor; `null` on the last page.",
"type": [
"string",
"null"
]
},
"sessions": {
"description": "The page of stored sessions.",
"items": {
"$ref": "#/$defs/Session"
},
"type": "array"
}
},
"required": [
"nextCursor",
"sessions"
],
"type": "object"
}