# Resources


[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
{
  "additionalProperties": false,
  "description": "Resources describes sandbox CPU and memory allocation.",
  "properties": {
    "cpus": {
      "description": "cpus is present only when the caller or backend chooses a CPU count.",
      "type": [
        "integer",
        "null"
      ]
    },
    "memoryMib": {
      "description": "memory_mib is present only when the caller or backend chooses memory.",
      "format": "int64",
      "type": [
        "integer",
        "string",
        "null"
      ]
    }
  },
  "title": "Resources",
  "type": "object"
}
```



