# FilesRemoveResponse


[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": "RemoveResponse reports partial recursive progress to every caller: check failed_path,\nnot the operation status, when Remove stops partway. Effects are never rolled back.",
  "properties": {
    "completedCount": {
      "description": "completed_count is the total number of paths removed, which may exceed\nlen(completed_paths).",
      "type": "integer"
    },
    "completedPaths": {
      "description": "completed_paths lists removed paths in traversal order, bounded to the\nfirst 1000; completed_count carries the\ntrue total when it exceeds that bound.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "failedPath": {
      "description": "failed_path is the path where a recursive removal stopped; empty on full\nsuccess. Every path in completed_paths was removed before this one.",
      "type": "string"
    }
  },
  "title": "RemoveResponse",
  "type": "object"
}
```



