Skip to content
Developer Preview

TurnSteerResult

turn/steer result.

  • commandId
  • status
  • turnId
Source

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

{
"description": "`turn/steer` result.",
"properties": {
"commandId": {
"description": "Echoes the client's id.",
"type": "string"
},
"status": {
"$ref": "#/$defs/CommandStatus",
"description": "Admission status."
},
"turnId": {
"description": "The running turn that absorbed the input.",
"type": "string"
}
},
"required": [
"commandId",
"status",
"turnId"
],
"type": "object"
}