Skip to content
Developer Preview

SessionRenameParams

session/rename params: set or change the durable allocated session name through the runtime session_name command. One writer; withheld under the ephemeral profile.

  • commandId
  • name
  • sessionId
Source

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

{
"description": "`session/rename` params: set or change the durable\nallocated session name through the runtime `session_name` command. One\nwriter; withheld under the ephemeral profile.",
"properties": {
"commandId": {
"description": "The idempotency handle (UUIDv7).",
"type": "string"
},
"name": {
"description": "The requested name; the runtime's normalization and validation apply.",
"type": "string"
},
"sessionId": {
"description": "The target session.",
"type": "string"
}
},
"required": [
"commandId",
"name",
"sessionId"
],
"type": "object"
}