Share feedback
Answers are generated based on the documentation.

Experimental

Schema

ProcessChunk

Type: object

Chunk carries process output.
data

Type: string

data is output bytes.
All schema constraints and annotations
{
  "description": "data is output bytes.",
  "format": "byte",
  "type": "string"
}
stream

Schema: StreamType

stream identifies stdout, stderr, or PTY output.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/StreamType",
  "description": "stream identifies stdout, stderr, or PTY output."
}
streamSequence

Type: integer | string

stream_sequence is one-based and strictly increases per process output stream.
All schema constraints and annotations
{
  "description": "stream_sequence is one-based and strictly increases per process output stream.",
  "format": "int64",
  "type": [
    "integer",
    "string"
  ]
}
All schema constraints and annotations
{
  "description": "Chunk carries process output.",
  "properties": {
    "data": {
      "description": "data is output bytes.",
      "format": "byte",
      "type": "string"
    },
    "stream": {
      "$ref": "#/components/schemas/StreamType",
      "description": "stream identifies stdout, stderr, or PTY output."
    },
    "streamSequence": {
      "description": "stream_sequence is one-based and strictly increases per process output stream.",
      "format": "int64",
      "type": [
        "integer",
        "string"
      ]
    }
  },
  "title": "Chunk",
  "type": "object"
}