# KitStartup


[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": "Startup commands retained when creating an image. Services with startup replay run them at each boot; services without it accept valid commands without running them.",
  "properties": {
    "commands": {
      "description": "commands run in order at sandbox boot, on a backend that replays them.",
      "items": {
        "$ref": "#/components/schemas/KitStartupCommand"
      },
      "minItems": 1,
      "type": "array"
    },
    "kits": {
      "description": "kits names the kit identities the commands derive from, in composition\norder. Required.",
      "items": {
        "minLength": 1,
        "type": "string"
      },
      "minItems": 1,
      "type": "array"
    }
  },
  "required": [
    "kits",
    "commands"
  ],
  "title": "KitStartup",
  "type": "object"
}
```



