Skip to content
Developer Preview

SessionRenameResult

session/rename result: name is the canonical (normalized) name the durable record settled.

  • commandId
  • name
  • status
Source

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

{
"description": "`session/rename` result: `name` is the canonical\n(normalized) name the durable record settled.",
"properties": {
"commandId": {
"description": "Echoes the client's id.",
"type": "string"
},
"name": {
"description": "The settled canonical name. Omitted on the `RecoveryPending` arm, which\nanswers `{commandId, status: \"accepted\"}` and delivers the name via\n`session/nameChanged` / `Session.name`.",
"type": "string"
},
"status": {
"$ref": "#/$defs/CommandStatus",
"description": "Admission status."
}
},
"required": [
"commandId",
"status"
],
"type": "object"
}