# ReadOutputResponse


[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": "ReadOutputResponse is one page of ordered output.",
  "properties": {
    "chunks": {
      "description": "chunks is retained output in stream_sequence order, possibly empty.",
      "items": {
        "$ref": "#/components/schemas/ProcessChunk"
      },
      "type": "array"
    },
    "exited": {
      "$ref": "#/components/schemas/ProcessExited",
      "description": "exited is set once the process has exited and no retained bytes follow next_resume_from."
    },
    "nextResumeFrom": {
      "description": "next_resume_from is the stream_sequence to pass next; equal to resume_from\nwhen nothing new was retained.",
      "format": "int64",
      "type": [
        "integer",
        "string"
      ]
    }
  },
  "title": "ReadOutputResponse",
  "type": "object"
}
```



