Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ProcessExited

Type: object

Exited reports process completion.
exitCode

Type: integer

exit_code is the process exit code.
All schema constraints and annotations
{
  "description": "exit_code is the process exit code.",
  "format": "int32",
  "type": "integer"
}
reason

Type: string

reason is backend-readable exit context.
All schema constraints and annotations
{
  "description": "reason is backend-readable exit context.",
  "type": "string"
}
All schema constraints and annotations
{
  "description": "Exited reports process completion.",
  "properties": {
    "exitCode": {
      "description": "exit_code is the process exit code.",
      "format": "int32",
      "type": "integer"
    },
    "reason": {
      "description": "reason is backend-readable exit context.",
      "type": "string"
    }
  },
  "title": "Exited",
  "type": "object"
}