# KitStartupCommand


[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": "KitStartupCommand is one startup command in a KitStartup set, run in order\nby a backend that replays it at sandbox boot.",
  "properties": {
    "argv": {
      "description": "argv is the command and its arguments, exec-style. An argument other than\nthe executable itself may be empty (an intentional empty string, as in\n`printf %s \"\"`); only the vector itself is required non-empty.",
      "items": {
        "type": "string"
      },
      "minItems": 1,
      "type": "array"
    },
    "background": {
      "description": "background launches the command detached instead of waiting for it.",
      "type": "boolean"
    },
    "user": {
      "description": "user runs the command as this user; empty means the backend default.",
      "type": "string"
    }
  },
  "required": [
    "argv"
  ],
  "title": "KitStartupCommand",
  "type": "object"
}
```



