events.iterate.com

Event type

events.iterate.com/sandbox/created

The sandbox exists: identity and configuration are durably stored and itx.sandboxes.get(path) resolves it. No container is running yet — the first command (or start()) boots one.

Payload schema

configobject

The configuration fixed at birth.

instanceType"lite" | "basic" | "standard-1" | "standard-2" | "standard-3" | "standard-4"

Cloudflare container instance type — fixed for the sandbox's whole life (it selects the container class, and Cloudflare fixes instance type per class).

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "config": {
      "type": "object",
      "properties": {
        "instanceType": {
          "type": "string",
          "enum": [
            "lite",
            "basic",
            "standard-1",
            "standard-2",
            "standard-3",
            "standard-4"
          ],
          "description": "Cloudflare container instance type — fixed for the sandbox's whole life (it selects the container class, and Cloudflare fixes instance type per class)."
        }
      },
      "required": [
        "instanceType"
      ],
      "description": "The configuration fixed at birth."
    }
  },
  "required": [
    "config"
  ]
}