# FilesMkdirRequest


[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": "MkdirRequest creates a directory.",
  "properties": {
    "mode": {
      "description": "mode supplies the new leaf's Unix permission bits: mode \u0026 0777, or 0755\nwhen that value is zero, without subtracting umask.",
      "type": "integer"
    },
    "parents": {
      "description": "parents creates missing parents when true.",
      "type": "boolean"
    },
    "path": {
      "description": "path is the directory path.",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "path"
  ],
  "title": "MkdirRequest",
  "type": "object"
}
```



