{
  "@context": "https://schema.org",
  "@type": "WebAPI",
  "name": "Sandbox Exec API",
  "endpoint": "https://xn--82czbx2bczd4fl8a.online/api/sandbox/v1/{sandboxId}/exec",
  "method": "POST",
  "requestSchema": {
    "tool": "string",
    "input": "object",
    "timeoutMs": "integer",
    "seed": "integer"
  },
  "responseSchema": {
    "execId": "uuid",
    "status": "ok|err|timeout",
    "output": "object",
    "stderr": "string",
    "durationMs": "integer",
    "replayToken": "string"
  },
  "determinism": {
    "seedable": true,
    "clockMode": "frozen|monotonic|wall",
    "rngSource": "ChaCha20 seed=req.seed"
  }
}