Skip to content
Developer Preview

SessionListParams

session/list params. Read-only; never touches leases.

  • cursor
  • limit
  • updatedAfter
  • workspaceRoot
Source

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

{
"description": "`session/list` params. Read-only; never touches leases.",
"properties": {
"cursor": {
"description": "Opaque page cursor from a prior result. Page cursors are a distinct\nopaque-string family from view cursors and stream cursors, valid only\nfor re-issuing the same listing. Omitted and explicit\n`null` both mean \"first page\".",
"type": [
"string",
"null"
]
},
"limit": {
"description": "Page size; default 50, max 200 — the cap is published under an owner ruling.",
"maximum": 200,
"type": "integer"
},
"updatedAfter": {
"description": "Only sessions with log activity after this RFC3339 instant.",
"type": "string"
},
"workspaceRoot": {
"description": "Only sessions whose metadata workspace root equals this path.",
"type": "string"
}
},
"type": "object"
}