# FileType


[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": "FileType classifies the object at a path.\n\nValues:\nunspecified: unspecified means the backend has not classified the object. Stat and List always classify it.\nregular: regular is a regular file.\ndirectory: directory is a directory.\nsymlink: symlink is a symbolic link that could not be resolved to a target inside the jail.\nother: other is a socket, FIFO, device, or other non-regular, non-directory, non-symlink object.",
  "enum": [
    "unspecified",
    "regular",
    "directory",
    "symlink",
    "other"
  ],
  "title": "FileType",
  "type": "string"
}
```



