# EffectiveTimeouts


[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": "EffectiveTimeouts retains the selected behavior and current action deadline.\nDELETE and STOP retain a resume timeout; RESTART (and its deprecated alias KEEP) does not use one",
  "properties": {
    "autoResume": {
      "description": "auto_resume is explicit; endpoint authorization still precedes any wake-up.",
      "type": "boolean"
    },
    "expiresAt": {
      "$ref": "#/components/schemas/Timestamp",
      "description": "expires_at is present only while a deadline is armed, not before first readiness or while stopped."
    },
    "initialTimeout": {
      "$ref": "#/components/schemas/Duration",
      "description": "Records the accepted initial TTL, not the recurring interval for RESTART or KEEP."
    },
    "onTimeout": {
      "$ref": "#/components/schemas/TimeoutAction",
      "description": "on_timeout remains the accepted disposition through renewal and restart.",
      "not": {
        "enum": [
          "unspecified"
        ]
      }
    },
    "resumeTimeout": {
      "$ref": "#/components/schemas/Duration",
      "description": "Freezes the action's default for later starts; RESTART and KEEP manage their own interval."
    }
  },
  "required": [
    "onTimeout",
    "initialTimeout"
  ],
  "title": "EffectiveTimeouts",
  "type": "object"
}
```



