Skip to content
Developer Preview

TaskCommandResult

The task/background / task/stop ack: admission-only, echoing the targeted task.

  • commandId
  • status
  • taskId
Source

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

{
"description": "The `task/background` / `task/stop` ack: admission-only,\nechoing the targeted task.",
"properties": {
"commandId": {
"description": "Echoes the client's id.",
"type": "string"
},
"status": {
"$ref": "#/$defs/CommandStatus",
"description": "Admission status."
},
"taskId": {
"description": "Echoes the targeted task id.",
"type": "string"
}
},
"required": [
"commandId",
"status",
"taskId"
],
"type": "object"
}