Skip to content
Developer Preview

CommandAcceptedResult

The uniform command acknowledgement: admission only, never an outcome. session/compact alone may answer "noop"; every other command answers "accepted".

  • commandId
  • status
Source

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

{
"description": "The uniform command acknowledgement: admission only, never an\noutcome. `session/compact` alone may answer `\"noop\"`; every other command\nanswers `\"accepted\"`.",
"properties": {
"commandId": {
"description": "Echo of the client-minted UUIDv7 `commandId`.",
"type": "string"
},
"status": {
"$ref": "#/$defs/CommandAckStatus",
"description": "`\"accepted\"` for every admitted command (closed vocabulary)."
}
},
"required": [
"commandId",
"status"
],
"type": "object"
}