# ProcessChunk


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




Schema constraints and annotations:

```json
{
  "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"
}
```



