# AppliedKit


[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": "AppliedKit records kit content that was applied to a sandbox.",
  "properties": {
    "appliedAt": {
      "$ref": "#/components/schemas/Timestamp",
      "description": "applied_at is when the kit became active."
    },
    "digest": {
      "description": "digest identifies the exact applied content.",
      "type": "string"
    },
    "kind": {
      "description": "kind is normalized to \"sandbox\" or \"mixin\".",
      "enum": [
        "sandbox",
        "mixin"
      ],
      "type": "string"
    },
    "ref": {
      "description": "ref is the kit reference supplied or resolved by the backend.",
      "type": "string"
    }
  },
  "required": [
    "kind"
  ],
  "title": "AppliedKit",
  "type": "object"
}
```



